Add Generic service - all services should have a type model

This commit is contained in:
Deon George
2020-12-02 21:36:36 +11:00
parent 4718bf3057
commit 20ddacd9a3
3 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Models\Service;
use App\Models\Base\ServiceType;
class Generic extends ServiceType
{
protected $table = 'service__generic';
public $timestamps = FALSE;
}