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