Rofihimam

Untitled

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