@extends('layouts.app') @section('main-content')

Livraisons PDF Excel

@can('authorize', 'add_shippings') {{-- Ajouter Manuellement Une Livraison --}} @endcan
@foreach ($shippings as $key => $shipping) @endforeach
Cient Localisation Numéro de Commande Coût Statut
{{ $shipping->order->first_name . ' ' . $shipping->order->last_name }}
{{ $shipping->order->order_number }}
{{ (int) $shipping->cost }} FCFA
{{ $shipping->status }}
@if (request()->is('shippings') || request()->is('shippings/*')) @can('authorize', 'browse_shippings') @includeIf('backend.shippings.share') @endcan @can('authorize', 'add_shippings') @includeIf('backend.shippings.create') @endcan @can('authorize', 'edit_shippings') @includeIf('backend.shippings.edit') @endcan @can('authorize', 'delete_shippings') @includeIf('backend.shippings.delete') @endcan @endif @endsection @push('scripts') @endpush