Advertisement
ridyko

Langkah 3: Membuat Route dan Controller

Jun 21st, 2024
641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <?php
  2.  
  3. use Illuminate\Support\Facades\Route;
  4. use App\Http\Controllers\HaloController;
  5.  
  6. Route::get('/halo', [HaloController::class, 'index']);
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement