%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/geotechnics/api/app/Models/
Upload File :
Create Path :
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',
    ];

}

Zerion Mini Shell 1.0