@if(Session::has('import_success'))
List product success:
@foreach (Session::get('import_success') as $detail)
{{ $detail }}
@endforeach
@endif
@if(Session::has('import_error'))
List product error:
@foreach (Session::get('import_error') as $detail)
{{ $detail }}
@endforeach
@endif