JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "UserRegistration.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/app/Models/UserRegistration.php
File size: 645 bytes
MIME-type: text/x-php
Charset: utf-8
<?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'
];
}