Advertisement
CHaNStar

21

Mar 18th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6. use Illuminate\Support\Facades\DB;
  7.  
  8. class SiswaController extends Controller
  9. {
  10.     public function index()
  11.     {
  12.   $data['siswa'] = DB::table('siswa')->get();
  13.   //->orderBy('jenis_kelamin', 'desc')
  14.   //->where('nama_lengkap', 'like', '%o%')
  15.   return view('belajar', $data);
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement