Advertisement
Thelz

studiiokasak

Mar 19th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6.  
  7. class KelasController extends Controller
  8. {
  9.     public function index(){
  10.         $data['kelas'] =\DB::table('t_kelas')
  11.  
  12.         ->orderBy('lokasi','ASC')
  13.  
  14.         ->where('wali_kelas','LIKE','%A')
  15.  
  16.         ->get();
  17.  
  18.         return view('kelas', $data);
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement