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