%PDF- %PDF-
Direktori : /var/www/html/geotechnics/api/app/Models/ |
Current File : /var/www/html/geotechnics/api/app/Models/ContactRequest.php |
<?php namespace App\Models; use Illuminate\Notifications\Notifiable; /** * @property integer id * @property string name * @property string email * @property string enquiry */ class ContactRequest extends BaseModel { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'enquiry', ]; protected $casts = [ 'name' => 'string', 'email' => 'string', 'enquiry' => 'string', ]; }