1. Go to this page and download the library: Download edulazaro/larakeep library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
edulazaro / larakeep example snippets
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use EduLazaro\Larakeep\Concerns\HasKeepers;
class MyModel extends Model
{
use HasKeepers;
}
namespace App\Providers;
use App\Models\MyModel;
use App\Keepers\MyModelKeeper;
class AppServiceProvider extends Model
{
// ...
public function boot()
{
// ...
MyModel::keep(MyModelKeeper::class);
}
}
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use EduLazaro\Larakeep\Concerns\HasKeepers;
use EduLazaro\Larakeep\Attributes\KeptBy;
use App\Keepers\MyModelKeeper;
#[KeptBy(MyModelKeeper::class)]
class MyModel extends Model
{
use HasKeepers;
}
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use EduLazaro\Larakeep\Concerns\HasKeepers;
use EduLazaro\Larakeep\Attributes\KeptBy;
use App\Keepers\MyModelKeeperA;
use App\Keepers\MyModelKeeperB;
#[KeptBy(MyModelKeeperA::class)]
#[KeptBy(MyModelKeeperB::class)]
class MyModel extends Model
{
use HasKeepers;
}
namespace App\Keepers;
use \App\Models\MyClass;
class MyClassKeeper
{
// ...
public function getSearchText()
{
return $this->myClass->name . ' ' . $this->myClass->tag;
}
}
namespace App\Keepers;
use \App\Models\MyClass;
class MyClassKeeper
{
// ...
public function getSearchTextWith($whatever)
{
return $this->myClass->name . ' ' . $this->myClass->tag;
}
}
$myClassInstance->process('search_text'); // To execute the getSearchText method.
$myClassInstance->processWith('search_text', 'Any string'); // To execute the getSearchTextWith method.