This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/app/Models/Setup.php
2017-08-03 16:35:36 +10:00

19 lines
265 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Setup extends Model
{
protected $table = 'setup';
/**
* Get the site record associated with the setup.
*/
public function site()
{
return $this->hasOne('App\Models\Site');
}
}