@extends('layouts.partials.master') @section('title', 'Vouchers') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Vouchers']) {{-- filters --}}
| ID | Utilizador | Serviço | Código | Status | Emitido | Expiração | Ações | 
|---|---|---|---|---|---|---|---|
| {{ $voucher->id }} | @if ($voucher->userDetails && !$voucher->userDetails->trashed()) {{ $voucher->user->full_name }} @elseif($voucher->userDetails) {{ $voucher->user->full_name }} (excluído) @endif | {{ $voucher->service->name }} | {{ $voucher->code }} | @include('layouts.components.status', ['status' => $voucher->status]) | {{ $voucher->created_at ?? '' }} | {{ $voucher->expires_at ?? '' }} | |
| 
                                                 {{ __('translations.no_results') }}  | 
                                        |||||||