D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Models
/
Filename :
CaseHandler.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 CaseHandler * * @version February 28, 2020, 3:14 am UTC * * @property int $id * @property int $user_id * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property-read Address $address * @property-read User $user * * @method static Builder|CaseHandler newModelQuery() * @method static Builder|CaseHandler newQuery() * @method static Builder|CaseHandler query() * @method static Builder|CaseHandler whereCreatedAt($value) * @method static Builder|CaseHandler whereId($value) * @method static Builder|CaseHandler whereUpdatedAt($value) * @method static Builder|CaseHandler whereUserId($value) * * @mixin Model * * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\EmployeePayroll[] $payrolls * @property-read int|null $payrolls_count * @property int $is_default * * @method static Builder|CaseHandler whereIsDefault($value) */ class CaseHandler extends Model { public static $rules = [ 'first_name' => 'required|string', 'last_name' => 'required|string', 'email' => 'required|email|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 $table = 'case_handlers'; public $fillable = [ 'user_id', ]; const STATUS_ALL = 2; const ACTIVE = 1; const INACTIVE = 0; const STATUS_ARR = [ self::STATUS_ALL => 'All', self::ACTIVE => 'Active', self::INACTIVE => 'Deactive', ]; protected $casts = [ 'id' => 'integer', 'user_id' => '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'); } }