Skip to content

Instantly share code, notes, and snippets.

@sulemani39
Created February 6, 2025 21:10
Show Gist options
  • Save sulemani39/c929e73cda9139baa68279fdf11d7e04 to your computer and use it in GitHub Desktop.
Save sulemani39/c929e73cda9139baa68279fdf11d7e04 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\DB;
Use Illuminate\Http\Request;
class SiswaController extends Controller
{
public function index()
{
$siswa=DB::table('siswa')->get();
return view('siswa.index',['siswa'=>$siswa]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment