state.php 288 B

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