@extends('back.layouts.app', ['title' => 'SECR']) @section('content')
{{-- Page Header --}}
@include('back.common_views.quicklinks')

Buy Back Valuation Requests @if ($result->total() > 0) {{ $result->total() }} Total @endif

{{-- Filters Card --}}
Reset
{{-- Table Card --}}
Requests Listing
@csrf
@forelse ($result as $row) {{-- Checkbox --}} {{-- Expand toggle --}} {{-- ID --}} {{-- Name --}} {{-- Contact Info --}} {{-- Service / Assets --}} {{-- Date --}} {{-- Actions + hidden quick-view data --}} {{-- Expanded action row --}} @empty @endforelse
ID NAME CONTACT INFO SERVICE / ASSETS SUBMITTED ACTIONS
#{{ $row->id }}
{{ strtoupper(substr($row->first_name, 0, 1)) }}
{{ $row->first_name }} {{ $row->last_name }} @if ($row->company_name) {{ $row->company_name }} @endif
@if ($row->service_needed) {{ $row->service_needed }} @endif @if ($row->number_of_assets) {{ $row->number_of_assets }} assets @endif @if ($row->asset_type) {{ $row->asset_type }} @endif
{{ $row->created_at ? $row->created_at->format('d M, Y') : '—' }} {{-- Hidden quick-view content --}}

No valuation requests found.

{{-- Quick View Modal --}} @endsection @section('beforeBodyClose') @endsection