Skip to content

Instantly share code, notes, and snippets.

@sulemani39
Created August 2, 2025 07:51
Show Gist options
  • Save sulemani39/8cb6e54b11cdeb00823e5b479b7aeb05 to your computer and use it in GitHub Desktop.
Save sulemani39/8cb6e54b11cdeb00823e5b479b7aeb05 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class SiswaController extends Controller
{
public function index()
{
return view('siswa.index');
}
public function detail($id)
{
return view('siswa.detail', ['id' => $id]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment