1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-03-09 05:49:58 -04:00
hypothetical/app/Models/Contact.php
2016-01-03 19:08:53 -05:00

11 lines
162 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Contact extends Model
{
// the contact table
protected $table = 'contact';
}