Files
Kent-logistics-Laravel/app/Models/Admin.php

23 lines
398 B
PHP
Raw Normal View History

2025-11-06 17:09:52 +05:30
<?php
// app/Models/Admin.php
namespace App\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class Admin extends Authenticatable
{
use Notifiable;
protected $guard = 'admin';
protected $fillable = [
'name', 'email', 'password', 'role',
];
protected $hidden = [
'password', 'remember_token',
];
}