*/ use HasFactory; /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'failed_at' => 'datetime', 'payload' => 'json', ]; }