*/ protected $fillable = [ 'offer_id', 'user_id', 'start_date', 'end_date', 'price', 'discount', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'start_date' => 'datetime', 'end_date' => 'datetime', ]; }