'datetime:Y-m-d H:i:s', 'updated_at' => 'datetime:Y-m-d H:i:s', ]; /** * The attributes that should be cast to dates. * * @var array */ protected $dates = [ 'created_at', 'updated_at', ]; protected $table = 'user_step_apply'; protected $guarded = []; const STATUS_APPLY = 0; const STATUS_PASS = 1; const STATUS_REJECT = 2; public function user() { return $this->belongsTo(User::class); } }