4 lines
200 B
PHP
4 lines
200 B
PHP
<?php
|
|
namespace App\Models;use Illuminate\Database\Eloquent\Model;
|
|
class ProfileAudit extends Model{protected$guarded=[];protected function casts():array{return['before'=>'array','after'=>'array'];}}
|