fanatic/app/Models/Collective.php

43 lines
805 B
PHP
Raw Normal View History

2022-04-22 20:01:30 -07:00
<?php
namespace App\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
2022-04-23 10:57:56 -07:00
class Collective extends Authenticatable
2022-04-22 20:01:30 -07:00
{
2022-04-23 10:57:56 -07:00
use HasApiTokens, Notifiable;
2022-04-22 20:01:30 -07:00
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
}