mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
12 lines
162 B
PHP
12 lines
162 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Contact extends Model
|
||
|
{
|
||
|
// the contact table
|
||
|
protected $table = 'contact';
|
||
|
}
|