Exemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index(Request $request)
 {
     //$cheques = Lancamento::with('cheque')->where('tipo', 'bo')->search($request->q)->orderBy('data_vencimento', 'desc')->paginate();
     $cheques = Cheque::with('lancamento')->search($request->q)->orderBy('created_at', 'desc')->paginate();
     return view('cheques.index', compact('cheques'));
 }