fadlyshafa

Untitled

Dec 31st, 2019
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. ....
  2. public function periode(Request $request){
  3.         $tanggal_awal = date('Y-m-d',strtotime($request->tanggal_awal));
  4.         $tanggal_akhir = date('Y-m-d',strtotime($request->tanggal_akhir));
  5.  
  6.         $title = "list laporan dari tanggal $tanggal_awal sampai tanggal $tanggal_akhir";
  7.         $data = Peminjaman::where('created_at','>=',$tanggal_awal.' 00:00:00')->where('created_at','<=',$tanggal_akhir. '23:59:59')->get();
  8.         // dd($data);
  9.         return view('laporan.index',compact('title','data'));
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment