fadlyshafa

Untitled

Dec 31st, 2019
693
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. use App\Models\Peminjaman;
  8.  
  9. class Laporan_controller extends Controller
  10. {
  11.     public function index(){
  12.         $title = 'List Laporan';
  13.         $data = Peminjaman::get();
  14.         // dd($data);
  15.         return view('laporan.index',compact('title','data'));
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment