Initial Spark Install
This commit is contained in:
50
app/User.php
Normal file
50
app/User.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Laravel\Spark\User as SparkUser;
|
||||
|
||||
class User extends SparkUser
|
||||
{
|
||||
/**
|
||||
* 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',
|
||||
'remember_token',
|
||||
'authy_id',
|
||||
'country_code',
|
||||
'phone',
|
||||
'card_brand',
|
||||
'card_last_four',
|
||||
'card_country',
|
||||
'billing_address',
|
||||
'billing_address_line_2',
|
||||
'billing_city',
|
||||
'billing_zip',
|
||||
'billing_country',
|
||||
'extra_billing_information',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be cast to native types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $casts = [
|
||||
'trial_ends_at' => 'datetime',
|
||||
'uses_two_factor_auth' => 'boolean',
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user