minor fix on updating status of order, upgrade datatables

This commit is contained in:
Ludovic CANDELLIER
2023-09-13 22:17:49 +02:00
parent eda2bbf1db
commit da48f41ec0
6 changed files with 30 additions and 17 deletions

View File

@@ -13,7 +13,7 @@
<h4>{{ $order['delivery']['name'] }} </h4>
</div>
<div class="col-6 text-right">
@include('components.form.buttons.button-save')
<x-save />
</div>
</div>
@@ -121,3 +121,13 @@
</x-card>
{{ Form::close() }}
@endsection
@include('load.form.save')
@include('load.form.select2')
@push('js')
<script>
initSaveForm('#order-form');
initSelect2();
</script>
@endpush

View File

@@ -5,7 +5,9 @@
<h1 class="p-2 green" style="font-size: 2em;">{{ $shelve['name'] }}</h1>
</div>
<div class="col-6 text-right">
<a class="mt-2 btn btn-green-dark" href="{{ route('Shop.Categories.show', ['id' => $shelve['id']]) }}">Découvrir la sélection</a>
<a href="{{ route('Shop.Categories.show', ['id' => $shelve['id']]) }}" class="mt-2 btn btn-green-dark" >
Découvrir la sélection
</a>
<a class="mt-2 green-dark btn" href="{{ route('Shop.Categories.show', ['id' => $shelve['id']]) }}">Tout voir</a>
</div>
</div>