'datetime', 'due_at' => 'datetime', 'returned_at' => 'datetime', ]; public function user() { return $this->belongsTo(User::class); } public function book() { return $this->belongsTo(Book::class); } }