@extends('garage.layouts.app') @section('title', 'Warranty claims') @push('styles') @include('garage.claims.partials.claims-ui') @endpush @section('content')
Track warranty replacements and discount adjustments — stock moves through claim purchase and sale entries.
| Claim # | Date | Customer | Sale | Resolution | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $c->claim_no }} | {{ $c->claim_date }} | {{ $c->customer_name ?? '—' }} | {{ $c->sale_number ?? '—' }} | @include('garage.claims.partials.resolution-badge', ['resolution' => $c->resolution_type]) | @include('garage.claims.partials.status-badge', ['status' => $c->status]) | @include('garage.claims.partials.actions-dropdown', [ 'claimId' => $c->id, 'claimNo' => $c->claim_no, 'canEdit' => $canEditRow, 'canDelete' => $canDeleteRow, ]) |
|
No warranty claims yet. Create your first claim to get started.
|
||||||