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

19 lines
265 B
PHP
Raw Normal View History

<?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');
}
}