@extends('layouts.motoboy_dashboard') @section('content')

{{ $title ?? 'Entregas Canceladas' }}

Motoboy: {{ $motoboy->name ?? 'N/A' }}
Status: {{ str_replace('_', ' ', $status ?? 'N/A') }}

Entregas {{ $title ?? 'Canceladas' }} ({{ $entregas->total() }})

Listagem das entregas que foram canceladas.

@if ($entregas->hasPages())
{{ $entregas->links('pagination::tailwind') }}
@endif
@endsection @section('scripts') {{-- Para mensagens de alerta, se necessário --}} {{-- --}} @endsection