Created
August 2, 2025 07:51
-
-
Save sulemani39/8cb6e54b11cdeb00823e5b479b7aeb05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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