/
home
/
techb158
/
immovalet.com
/
platform
/
plugins
/
audit-log
/
src
/
Models
/
/home/techb158/immovalet.com/platform/plugins/audit-log/src/Models
mkdir
upload
Name
Size
Mode
Actions
AuditHistory.php
1180
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/plugins/audit-log/src/Models/AuditHistory.php
(1180B)
<?php namespace Botble\AuditLog\Models; use Botble\ACL\Models\User; use Botble\Base\Models\BaseModel; use Illuminate\Database\Eloquent\MassPrunable; use Illuminate\Database\Eloquent\Relations\BelongsTo; class AuditHistory extends BaseModel { use MassPrunable; /** * The database table used by the model. * * @var string */ protected $table = 'audit_histories'; /** * The date fields for the model.clear * * @var array */ protected $dates = [ 'created_at', 'updated_at', ]; /** * @var array */ protected $fillable = [ 'user_agent', 'ip_address', 'module', 'action', 'user_id', 'reference_user', 'reference_id', 'reference_name', 'type', 'request', ]; /** * @return BelongsTo */ public function user() { return $this->belongsTo(User::class)->withDefault(); } /** * @return \Illuminate\Database\Query\Builder */ public function prunable() { return $this->whereDate('created_at', '>', now()->subDays(30)->toDateString()); } }
Save
cmd:
run