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

@@ -159,6 +159,8 @@
/*
* Package Service Providers...
*/
Barryvdh\Debugbar\ServiceProvider::class,
/*
* Application Service Providers...
@@ -168,6 +170,7 @@
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
App\Providers\ViewServiceProvider::class,
])->toArray(),
/*
@@ -183,6 +186,8 @@
'aliases' => Facade::defaultAliases()->merge([
// 'Example' => App\Facades\Example::class,
'Debugbar' => Barryvdh\Debugbar\Facades\Debugbar::class,
])->toArray(),
];

View File

@@ -26,7 +26,7 @@
*/
'fallbacks' => [
Stevebauman\Location\Drivers\MaxMind::class,
Stevebauman\Location\Drivers\Maxmind::class,
],
/*
@@ -55,7 +55,7 @@
*/
'testing' => [
'ip' => env('DEV_DEFAULT_IP', '202.188.193.93'),
'ip' => env('DEV_DEFAULT_IP'),
'enabled' => env('LOCATION_TESTING', true),
],

File diff suppressed because it is too large Load Diff

View File

@@ -4,4 +4,6 @@
'app_version' => '1.0.0',
'dev_default_ip' => env('DEV_DEFAULT_IP', '127.0.0.1'),
'fallback_country_slug' => 'my',
];