Add (routes): All routes possible

Add (pages): home country page
This commit is contained in:
2023-07-26 03:10:36 +08:00
parent 728fc09474
commit 36efe23dcc
24 changed files with 4125 additions and 51 deletions

View File

@@ -9,6 +9,7 @@
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use GeneaLabs\LaravelModelCaching\Traits\Cachable;
/**
* Class Category
@@ -30,7 +31,7 @@
*/
class Category extends Model
{
use SoftDeletes;
use SoftDeletes, Cachable;
protected $table = 'categories';

View File

@@ -9,6 +9,7 @@
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use GeneaLabs\LaravelModelCaching\Traits\Cachable;
/**
* Class CountryLocale
@@ -24,7 +25,7 @@
*/
class CountryLocale extends Model
{
use SoftDeletes;
use SoftDeletes, Cachable;
protected $table = 'country_locales';