PHP Classes

File: apps/MS-AvailableHotels/app/Models/User.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Hotel Booking Available   apps/MS-AvailableHotels/app/Models/User.php   Download  
File: apps/MS-AvailableHotels/app/Models/User.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Hotel Booking Available
Search for hotels that are available for booking
Author: By
Last change:
Date: 2 years ago
Size: 790 bytes
 

Contents

Class file image Download
<?php

namespace App\Models;

use
Illuminate\Auth\Authenticatable;
use
Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
use
Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use
Illuminate\Database\Eloquent\Factories\HasFactory;
use
Illuminate\Database\Eloquent\Model;
use
Laravel\Lumen\Auth\Authorizable;

class
User extends Model implements AuthenticatableContract, AuthorizableContract
{
    use
Authenticatable, Authorizable, HasFactory;

   
/**
     * The attributes that are mass assignable.
     *
     * @var array
     */
   
protected $fillable = [
       
'name', 'email',
    ];

   
/**
     * The attributes excluded from the model's JSON form.
     *
     * @var array
     */
   
protected $hidden = [
       
'password',
    ];
}