Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ....
- public function periode(Request $request){
- $tanggal_awal = date('Y-m-d',strtotime($request->tanggal_awal));
- $tanggal_akhir = date('Y-m-d',strtotime($request->tanggal_akhir));
- $title = "list laporan dari tanggal $tanggal_awal sampai tanggal $tanggal_akhir";
- $data = Peminjaman::where('created_at','>=',$tanggal_awal.' 00:00:00')->where('created_at','<=',$tanggal_akhir. '23:59:59')->get();
- // dd($data);
- return view('laporan.index',compact('title','data'));
- }
Advertisement
Add Comment
Please, Sign In to add comment