File: /var/www/html/punjabcabs/Original_Backup/app/ProviderApplication.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ProviderApplication extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'provider_id',
'name',
'last_name',
'dob',
'ssn',
'phone',
'driver_license',
'expiration_date',
'emergency_person',
'emergency_phone',
'crime',
'crime_explain',
'make',
'model',
'model_type',
'year',
'color',
'license_plate',
'shift1',
'shift2',
'shift3',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'created_at', 'updated_at'
];
}