More base setup and integration with AdminLTE

This commit is contained in:
Deon George
2016-10-21 01:40:52 +11:00
parent 84ae365676
commit 3f54233c39
1495 changed files with 841197 additions and 20908 deletions

18
app/Models/Setup.php Normal file
View File

@@ -0,0 +1,18 @@
<?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');
}
}