/
home
/
maktab
/
server
/
app
/
Models
/
File Upload :
llllll
Current File: /home/maktab/server/app/Models/Attendance.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Attendance extends Model { use HasFactory,Selector; protected $fillable = [ 'employee_id', 'type', 'date_at', 'name', 'present', 'maktab_id', 'report_id', 'body', 'absent_body' ]; protected $casts = [ 'present'=>'boolean' ]; public function maktab() { return $this->belongsTo(Maktab::class); } public function employee(){ return $this->belongsTo(User::class)->withTrashed(); } }
Copyright ©2k19 -
Hexid
|
Tex7ure