/** * Display a listing of the resource. * * @return Response */ public function index() { $categorias = CreditCategory::all(); return view('solo.categoria.index', compact('categorias')); }
/** * Display a listing of the resource. * * @return Response */ public function index() { return CreditCategory::all(); }