예제 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     $payables = Vendinfo::latest('created_at')->paginate(10);
     return view('accounting.payables.index', compact('payables'));
 }
예제 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //
     $vendinfos = Vendinfo::latest('created_at')->paginate(10);
     return view('purchase.vendinfos.index', compact('vendinfos'));
 }