@extends('layout/ace') @section('breadcrumbs') {{ Breadcrumbs::render('cms.certificate-requests.show', $certificateRequest) }} @endsection @section('title', 'Faktura za sertifikat o digitalnoj pismenosti | ' . $certificateRequest->id) @section('content')
{{--
Izmeni @if ($owner && $owner->status == 1 && $owner->suspend == 0) Uloguj se kao vlasnik @endif Svi korisnici @if (in_array(2, $company->currentRoles->pluck('id')->toArray())) Dodaj paket @endif Dodaj korisnika Upiši pretplatu
--}}

Informacije o kupcu

  • Ime i prezime: {{ $customer->full_name }}
  • Email: {{ $customer->email }}
  • Telefon: {{ $customer->phone }}
  • Adresa: {{ $customer->address }}
  • Grad: {{ $customer->city }}
@if (strlen($customer->note) > 0)

Beleška

{!! $customer->note !!}

@endif
@if ($invoice->invoicePayments->whereNull('paid_at')->count() > 0) @foreach ($invoice->invoicePayments->whereNull('paid_at') as $unpaidInvoicePayment)

Zapisivanje uplate

@csrf @method('PATCH')
@endforeach @endif @if ($invoice->invoicePayments->whereNotNull('paid_at')->count() > 0)

Pregled uplata

@include('cms.certificate_requests.partials.show._payments-table') @endif
@endsection @section('scripts') @parent @endsection