@extends('admin.main') @section('main')

Warranty Request #{{ $warranty->id }}

Logo
Store Name
{{ $warranty->store_name }}
{{ $warranty->first_name }} {{ $warranty->last_name }} ({{ $warranty->email }}),
Here are the warranty claim details.
Request ID #PSWR-{{ $warranty->id }}
Date of Purchase {{ Carbon\Carbon::create($warranty->date)->diffForHumans() }}
Date Warranty Request {{ Carbon\Carbon::create($warranty->created_at)->diffForHumans() }}
Invoice File View Invoice
Address {{ $warranty->address_line_1 }},
{{ $warranty->address_line_2 }},
{{ $warranty->state }},
{{ $warranty->zipcode }}.
@foreach ($warranty->products as $product) @endforeach
Product Product Id QTY
#{{ $product->id }} {{ $warranty->quantity }}
@if (App\Services\PermissionService::checkHasPermission('warranty_view')) Edit @endif @if (App\Services\PermissionService::checkHasPermission('warranty_change_status')) In Process Finished Rejected @endif @if ($warranty->status == 'finished' && App\Services\PermissionService::checkHasPermission('warranty_view_certificate')) View Certificate @endif @if ($warranty->status !== 'finished' && App\Services\PermissionService::checkHasPermission('warranty_issue_certificate')) Issue Certificate @endif
Notes
Loading notes...
Delete note
@push('js') @endpush @push('css') @endpush