/** * Remove the specified biller from storage. * * @param int $id * @return Response */ public function destroy($id) { Biller::destroy($id); return Redirect::route('billers.index'); }