NIM_E31222351/app/Http/Controllers/LaporanController.php

13 lines
222 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class LaporanController extends Controller
{
public function index()
{
return view('Laporan'); // This will return the home view
}
}