AppLog.php 396 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Repositories\Models\Base;
  3. use App\Repositories\Models\Model;
  4. class AppLog extends Model
  5. {
  6. /**
  7. * @var string
  8. */
  9. protected $table = 'base_app_logs';
  10. /**
  11. * The attributes that are mass assignable.
  12. *
  13. * @var array
  14. */
  15. protected $guarded = [];
  16. protected $casts = [
  17. 'params' => 'json',
  18. 'log' => 'json',
  19. ];
  20. }