19 lines
265 B
PHP
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');
|
|
}
|
|
}
|