Using datatables to render home dashboard

This commit is contained in:
Deon George
2018-06-19 22:31:49 +10:00
parent 7e503eb1bc
commit 1ac764f05e
17 changed files with 7637 additions and 141 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ServiceHost extends Model
{
protected $table = 'ab_service__hosting';
public function service()
{
return $this->belongsTo(Service::class);
}
public function getNameAttribute()
{
return sprintf('%s',$this->domain_name);
}
}