D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Models
/
Filename :
Receptionist.php
back
Copy
<?php namespace App\Models; use Eloquent as Model; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\MorphMany; use Illuminate\Database\Eloquent\Relations\MorphOne; use Illuminate\Support\Carbon; /** * Class Receptionist * * @version February 14, 2020, 9:14 am UTC * * @property int $id * @property int $user_id * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property-read User $user * * @method static Builder|Receptionist newModelQuery() * @method static Builder|Receptionist newQuery() * @method static Builder|Receptionist query() * @method static Builder|Receptionist whereCreatedAt($value) * @method static Builder|Receptionist whereId($value) * @method static Builder|Receptionist whereUpdatedAt($value) * @method static Builder|Receptionist whereUserId($value) * * @mixin Model * * @property-read \App\Models\Address $address * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\EmployeePayroll[] $payrolls * @property-read int|null $payrolls_count * @property int $is_default * * @method static Builder|Receptionist whereIsDefault($value) */ class Receptionist extends Model { public $table = 'receptionists'; const STATUS_ALL = 0; const ACTIVE = 1; const INACTIVE = 2; const STATUS_INACTIVE = 0; const STATUS_ARR = [ self::STATUS_ALL => 'All', self::ACTIVE => 'Active', self::INACTIVE => 'Deactive', ]; public $fillable = [ 'user_id', ]; protected $casts = [ 'id' => 'integer', 'user_id' => 'integer', ]; public static $rules = [ 'first_name' => 'required|string', 'last_name' => 'required|string', 'email' => 'required|email:filter|unique:users,email', 'password' => 'required|same:password_confirmation|min:6', 'designation' => 'required|string', 'qualification' => 'required|string', 'address1' => 'nullable|string', 'address2' => 'nullable|string', 'city' => 'nullable|string', 'zip' => 'nullable|integer', ]; public function user(): BelongsTo { return $this->belongsTo(User::class, 'user_id'); } public function address(): MorphOne { return $this->morphOne(Address::class, 'owner'); } public function payrolls(): MorphMany { return $this->morphMany(EmployeePayroll::class, 'owner'); } }