mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-22 10:52:14 +00:00
12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ContactUS extends Model
|
|
{
|
|
public $table = 'contactus';
|
|
public $fillable = ['name', 'email', 'message'];
|
|
}
|