Files
Kent-logistics-Laravel/app/Models/Admin.php
2025-11-06 17:09:52 +05:30

23 lines
398 B
PHP

<?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',
];
}