@php $configData = Helper::appClasses(); $initials = strtoupper(substr($courier->name ?? '', 0, 2)); @endphp @extends('layouts/layoutMaster') @section('title', 'Repartidor') @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/vendor/libs/animate-css/animate.scss', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.scss' ]) @endsection @section('page-style') @vite('resources/assets/vendor/scss/pages/page-user-view.scss') @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/moment/moment.js', 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.js' ]) @endsection @section('content')
| # | Cliente | Dirección | Estado | Fecha |
|---|---|---|---|---|
| #{{ $delivery->id }} | {{ $delivery->customer_name }} | {{ $delivery->delivery_address }} | {{ ucfirst($delivery->status) }} | {{ $delivery->created_at->format('d/m/Y H:i') }} |
| Sin entregas registradas. | ||||