Booking edit v3

This commit is contained in:
Kevin Adametz 2021-06-18 15:00:12 +02:00
parent 6706d28f51
commit 6880c7e989
20 changed files with 691 additions and 97 deletions

41
app/Models/Branch.php Normal file
View file

@ -0,0 +1,41 @@
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
/**
* Class Branch
*
* @property int $id
* @property string $name
*
* @property Collection|Booking[] $bookings
* @property Collection|SfGuardUser[] $sf_guard_users
*
* @package App\Models
*/
class Branch extends Model
{
protected $table = 'branch';
public $timestamps = false;
protected $fillable = [
'name'
];
public function bookings()
{
return $this->hasMany(Booking::class);
}
public function sf_guard_users()
{
return $this->hasMany(SfGuardUser::class);
}
}