Hello, how are you? Why Laravel is not picking up the object in the view. Searching the session I can get the data.
/* ProdutoController */
public function deleta($id){
$prod = Produto::find($id);
$prod->delete();
return redirect()->action('ProdutoController@lista')
->with('message2','deletado');
}
View
@if(!empty($message2))
Deletado com sucesso
@endif