Files
2025-08-17 16:23:14 +05:45

20 lines
621 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Modules\CountryList\app\Http\Controllers\CountryListController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::group([], function () {
Route::resource('countrylist', CountryListController::class)->names('countrylist');
});