Rofihimam

Untitled

Mar 13th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 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')->get();
  14.         return view('belajar', $data);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment