0
I’m trying to call one function inside another in one of the controllers of my Laravel project, but when the flame the page is all blank and presents no error.
public function index()
{
$departamentos = Departamento::all();
$clientes = Cliente::all()->sortByDesc("id");
$lastCliente = Cliente::all()->sortByDesc("id")->first();
return view('clientes', compact('clientes','departamentos','lastCliente'));
}
public function store(Request $request)
{
$cliente = new Cliente();
$cliente->nome = $request->input('nomeCliente');
$cliente->idade = $request->input('idadeCliente');
$cliente->departamento_id = $request->input('idDepartamento');
$cliente->descricao = $request->input('descricaoCliente');
$cliente->save();
$this->index(); <-----------
}