<?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;
use Illuminate\Database\Eloquent\Model;
class UserRegistration extends Model {
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $table = 'user_registration';
protected $fillable = [
'name',
'enrollment_number',
'place_practice',
'practice_period',
'phone',
'email',
'password'
];
}