Пример #1
0
 private function getRates()
 {
     return Taxas::select('taxas.taxa', 'taxas.porcentagem')->orderBy('taxas.porcentagem')->orderBy('taxas.taxa')->get();
 }
Пример #2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return Taxas::select('id', 'taxa', 'porcentagem')->orderBy('taxa')->get();
 }