Answers for "back()->with('message','Successfully Updated the Password'); larvel"

PHP
0

back()->with('message','Successfully Updated the Password'); larvel

**Try This**
    
    Try This Code 
    --- Controller ---

    return redirect('list')->with('message', 'Successfully');
    return redirect('list');
   
  ----  Blade view ------
    @if(session()->has('message'))
        <div class="alert alert-success">
            {{ session()->get('message') }}
        </div>
    @endif
Posted by: Guest on January-04-2022

Code answers related to "back()->with('message','Successfully Updated the Password'); larvel"

Browse Popular Code Answers by Language