@extends('layouts.partials.master') @section('title', 'Vouchers') @push('styles') @endpush @section('content')
| ID | Utilizador | Serviço | Código | Emitido | Expiração | Estado | |
|---|---|---|---|---|---|---|---|
| {{ $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 }} | {{ $voucher->created_at ?? '' }} | {{ $voucher->expires_at ?? '' }} | @include('layouts.components.status', ['status' => $voucher->status]) |