Log.php 398 B

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