@extends('layouts.app') @section('title', 'Nouvelle Expédition') @section('content')
{{-- Section d'aide --}}
Retour aux livraisons

Nouvelle expédition

Sélectionnez une commande à expédier

@if($bookings->count() > 0)
@foreach($bookings as $booking)
Confirmée #{{ $booking->booking_number ?? $booking->id }}

{{ $booking->service->name }}

{{ $booking->client->name }}

Date de commande

{{ $booking->created_at->format('d/m/Y H:i') }}

Montant

{{ number_format($booking->total_price, 2) }} €

@endforeach
@else

Aucune commande à expédier

Toutes vos commandes confirmées ont déjà été expédiées.

Voir toutes les commandes
@endif
@push('scripts') @endpush @endsection