'int', 'status' => 'int', 'type' => 'int', 'from_date' => 'datetime', 'to_date' => 'datetime', ]; protected $fillable = [ 'lodging_id', 'from_date', 'to_date', 'status', 'type' ]; public function fewo_lodging() { return $this->belongsTo(\App\Models\FewoLodging::class, 'lodging_id'); } }