/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $clientes = Cliente::active()->orderBy('nome', 'asc')->get(); return view('comercial.clientes.index', compact('clientes')); }