MOON
Server: Apache
System: Linux host.sunshiene.com 4.18.0-553.121.1.el8_10.x86_64 #1 SMP Thu Apr 30 09:06:34 EDT 2026 x86_64
User: clientsoftwares (1005)
PHP: 8.2.31
Disabled: system, exec, mail, shell_exec, passthru, popen, proc_open, pcntl_exec, dl, ini_alter, ini_restore, symlink, link, chown, posix_kill
Upload Files
File: /home/clientsoftwares/public_html/ecom.clientsoftwares.com/routes/CountryRoutes.php
<?php
use App\Http\Controllers\Admin\CountryController;

Route::group(['prefix' => 'country'], function () {
  Route::controller(CountryController::class)->group(function () {

    Route::get('/', ['as' => 'country', 'uses' => 'index']);
    Route::get('/add', ['as' => 'country.add', 'uses' => 'add']);
    Route::post('/store', ['as' => 'country.store', 'uses' => 'store']);
    Route::get('/{id}/edit', ['as' => 'country.edit', 'uses' => 'edit']);
    Route::get('/{id}/delete]', ['as' => 'country.delete', 'uses' => 'delete']);
    Route::post('/{id}/update', ['as' => 'country.update', 'uses' => 'update']);
  });
});