You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/app/Reservation.php

23 lines
373 B

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Reservation extends Model
{
protected $fillable = ['business_id', 'user_id', 'name', 'description', 'time', 'date'];
public function business()
{
return $this->belongsTo('App\Business');
}
public function user()
{
return $this->belongsTo('App\User');
}
}