PHP code example of hanifhefaz / user-model-activity
1. Go to this page and download the library: Download hanifhefaz/user-model-activity 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/ */
namespace App\Models;
use Hanifhefaz\UserModelActivity\Traits\UserModelActivityLogger;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
use UserModelActivityLogger;
protected $fillable = ['title', 'content'];
}
namespace App\Models;
use Hanifhefaz\UserModelActivity\Traits\UserModelActivityLogger;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Spatie\Permission\Models\Permission as ParentPermission;
class Permission extends ParentPermission
{
use HasFactory;
use UserModelActivityLogger;
protected $fillable = [
'id','name','created_at','updated_at'
];
}