Advertisement
fadlyshafa

Untitled

Sep 4th, 2019
333
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. class Buku_controller extends Controller
  8. {
  9.     public function index(){
  10.         $title = 'List Buku';
  11.         $data = \DB::table('m_buku')->get();
  12.  
  13.         return view('buku.buku_index',compact('title','data'));
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement