Created
May 5, 2020 01:00
-
-
Save fleetimee/98e7742f4b74fcba09c4df959d18e854 to your computer and use it in GitHub Desktop.
Notif
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if(session()->has('success')) | |
<div class="alert alert-success my-5"> | |
{{ session()->get('success') }} | |
</div> | |
@endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
session()->flash('success', 'Data Berhasil Disimpan'); | |
return redirect('/list-produk'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment