Пример #1
0
 /**
  * Display the specified resource.
  *
  * @return Response
  */
 public function receipts()
 {
     $receipts = Receipt::where('afm', '=', Auth::user()->afm)->paginate(30);
     return view('business.receipts', compact('receipts'));
 }