@extends('layouts.partials.master') @section('title', 'Vouchers') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => "Voucher $voucher->code"]) Voltar
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])
@endsection