24 lines
519 B
PHP
24 lines
519 B
PHP
<?php
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
// бронирование ĸлиентов
|
|
class Booking extends Model {
|
|
use HasFactory;
|
|
|
|
protected $table = 'bookings';
|
|
|
|
protected $fillable = [
|
|
'bookingnumber',
|
|
'client_id',
|
|
'employee_id',
|
|
'service_id',
|
|
'bookingdate',
|
|
'starttime',
|
|
'endtime',
|
|
'status',
|
|
'cancelledby',
|
|
'cancelreason'
|
|
];
|
|
}
|