@extends('pdf.pdf-template')
@section('content')
{{ $user->fullName }} Deleted
ID |
{{ $user->id }} |
Username |
{{ $user->username }} |
Email |
{{ $user->email }} |
Notes |
{!! $user->notes !!} |
Created |
{{ $user->created_at }} |
Updated |
{{ $user->updated_at }} |
User Contacts
ID |
Contact Type |
Business Name |
Address |
City |
Zip |
Phone |
@foreach($contacts as $contact)
{{$contact->id}} |
{{$contact->contact_type}} |
{{$contact->business_name}} |
{{$contact->address}} |
{{$contact->city}} |
{{$contact->zip}} |
{{$contact->phone}} |
@endforeach
Banners
ID |
Size |
Title |
Link |
Type |
@foreach($banners as $banner)
{{$banner->id}} |
{{$banner->size}} |
{{$banner->title}} |
{{$banner->link}} |
{{$banner->type}} |
@endforeach
Buttons
ID |
Title |
Link |
Type |
@foreach($buttons as $button)
{{$button->id}} |
{{$button->title}} |
{{$button->link}} |
{{$button->type}} |
@endforeach
Salvosites
ID |
Name |
Title |
Description |
@foreach($salvosites as $salvosite)
{{$salvosite->id}} |
{{$salvosite->name}} |
{{$salvosite->title}} |
{{$salvosite->description}} |
@endforeach
Messages for items
@foreach($items as $item)
@if (count($item->mails) > 0)
Item id: {{$item->id}}
ID |
From |
To |
Subject |
Message |
@foreach($item->mails as $mail)
{{$mail->id}} |
{{$mail->from}} |
{{$mail->to}} |
{{$mail->subject}} |
{{$mail->message}} |
@endforeach
@endif
@endforeach
User Payments
Payment ID |
Payment Status |
Payment Date |
In |
Out |
Tax |
Closing Balance |
@foreach($payments as $payment)
{{$payment->id}} |
{{$payment->payment_status}} |
{{$payment->created_at}} |
{{ $payment->in }} |
{{ $payment->out }} |
{{ $payment->tax }} |
{{ $payment->closing_balance }} |
@endforeach
@endsection