Viewing file: User.php (1.26 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace App\Models;
use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens;
class User extends Authenticatable { use HasFactory, Notifiable, HasApiTokens;
/** * The attributes that are mass assignable. * * @var array */ protected $table = 'users';
protected $fillable = [ 'name', 'email', 'password', 'role_id', 'parent_id', 'school_id', 'code', 'user_information', 'department_id', 'designation' ];
/** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ];
/** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ];
public function checkEnrollment(){ return $this->hasMany(Enrollment::class,'user_id'); }
public function getTomoNameAttribute() { return $this->checkEnrollment()->class_id; } public function pages(){ return $this->hasMany(Page::class,'admin_id'); } }
|