Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use App\Models\Peminjaman;
- class Laporan_controller extends Controller
- {
- public function index(){
- $title = 'List Laporan';
- $data = Peminjaman::get();
- // dd($data);
- return view('laporan.index',compact('title','data'));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment