I have a problem with with method in view function. I would like to pass data variable and status. I do that:
return view('user.blogsettings')
->with(array('data' => $this->_data, 'status' => 'Save'));
Data item from array works ok, but status is not
@if (session('status'))
<div class="alert alert-success">
{{ session('status') }}
</div>
@endif
There is no message.