38 lines
578 B
PHP
38 lines
578 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Mail\Mailable;
|
|
use App\Traits\Uuids;
|
|
// use Illuminate\Notifications\Notifiable;
|
|
|
|
class Client extends Model
|
|
{
|
|
use Uuids;
|
|
|
|
/**
|
|
* Indicates if the IDs are auto-incrementing.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $incrementing = false;
|
|
|
|
|
|
/**
|
|
* The attributes that are not mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $guarded = [ 'id' ];
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function schedules()
|
|
{
|
|
return $this->hasMany(Schedule::class);
|
|
}
|
|
|
|
} |