123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Repositories\Models\Base;
- use Illuminate\Database\Eloquent\Model;
- class Log extends Model
- {
- /**
- * @var string
- */
- protected $table = 'base_logs';
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $guarded = [];
- protected $casts = [
- 'params' => 'json',
- 'detail' => 'json',
- ];
- }
|