private function getRates() { return Taxas::select('taxas.taxa', 'taxas.porcentagem')->orderBy('taxas.porcentagem')->orderBy('taxas.taxa')->get(); }
/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { return Taxas::destroy($id); }