%PDF- %PDF-
Direktori : /var/www/html/o91-api/app/Models/ |
Current File : /var/www/html/o91-api/app/Models/ContactApplication.php |
<?php namespace App\Models; class ContactApplication extends BaseModel { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'anrede', 'vorname', 'nachname', 'strabe', 'hausnummer', 'plz', 'ort', 'bundesland', 'unternehmen', 'telephon', 'mail', 'binein', 'anzahl', 'folgender', 'kapital' ]; protected $guarded = [ ]; protected $guard_name = 'api'; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ ]; protected $casts = [ 'id' => 'integer', 'name' => 'string', 'anrede' => 'string', 'vorname' => 'string', 'nachname' => 'string', 'strabe' => 'string', 'hausnummer' => 'string', 'plz' => 'string', 'ort' => 'string', 'bundesland' => 'string', 'unternehmen' => 'string', 'telephon' => 'string', 'mail' => 'string', 'binein' => 'string', 'anzahl' => 'string', 'folgender' => 'string', 'kapital' => 'string' ]; }