1. Go to this page and download the library: Download sysbox/laravel-base-entity library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
return [
// this is the user class that will be refer to for fields: created_by_id and updated_by_id'user_class' => User::class, <<<<<<<<< add user classhere.
// thisisthesystemuser'sid,
// leaveitBLANKforautogeneration.
// orspecifiyinenv, ie: 'system_user_id' => env('SYSTEM_USER_ID'),
'system_user_id' => '',
];
useSysbox\LaravelBaseEntity\BaseModel;
classPersonextendBaseModel <<<<<<<<< extendyourBaseModel{
// all other laravel function for the model..
}