列表错误显示
This commit is contained in:
parent
67be2fd9fa
commit
3aa20d084a
|
|
@ -4,11 +4,9 @@
|
|||
|
||||
@section('content')
|
||||
|
||||
{{-- @dump($errors) --}}
|
||||
|
||||
{{-- @if (session('success'))
|
||||
<x-admin-alert type="success" msg="{{ session('success') }}" class="mt-4" />
|
||||
@endif --}}
|
||||
@if ($errors->has('error'))
|
||||
<x-admin-alert type="Danger" msg="{{ $errors->has('error') }}" class="mt-4" />
|
||||
@endif
|
||||
|
||||
<div class="card">
|
||||
<div class="card-body h-min-600">
|
||||
|
|
|
|||
|
|
@ -18,6 +18,9 @@
|
|||
</div>
|
||||
|
||||
{{-- @dump($errors) --}}
|
||||
@if ($errors->has('error'))
|
||||
<x-admin-alert type="Danger" msg="{{ $errors->has('error') }}" class="mt-4" />
|
||||
@endif
|
||||
|
||||
<div class="row mt-5" v-if="products.length">
|
||||
<div class="col-12 col-md-9">
|
||||
|
|
|
|||
Loading…
Reference in New Issue