country.php 242 B

12345678910
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. use App\Http\Controllers\CountryController;
  4. Route::controller(CountryController::class)->prefix('country')->group(function () {
  5. Route::get('/', 'index');
  6. Route::get('/{id}', 'show');
  7. });