@if (Session::has('alert'))
@php
$type = Session::get('alert-type', '');
@endphp
@switch ($type)
@case ('info'):
Note! {{ Session::get('alert') }}
@break;
@case ('success'):
Success! {{ Session::get('alert') }}
@break;
@case ('warning'):
Warning! {{ Session::get('alert') }}
@break;
@case ('error'):
Error! {{ Session::get('alert') }}
@break;
@endswitch
@endif