%PDF- %PDF-
Direktori : /var/www/html/o91-api/app/Models/ |
Current File : /var/www/html/o91-api/app/Models/UserApplication.php |
<?php namespace App\Models; /** * @property integer id * @property string name * @property string surname * @property string phone * @property string email * @property string short_description * @property mixed created_at * @property mixed updated_at */ class UserApplication extends BaseModel { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'surname', 'phone', 'email', 'short_description', 'from', ]; protected $guarded = [ ]; protected $guard_name = 'api'; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; protected $casts = [ 'id' => 'integer', 'name' => 'string', 'surname' => 'string', 'phone' => 'string', 'email' => 'string', 'short_description' => 'string', 'from' => 'string', ]; }