@extends('layouts.superadmin') @section('title', 'Reports Generation') @section('page-title', 'Reports Generation') @section('content')
{{-- Filter Form --}}
Filter by Location ID @if(isset($reports) && $reports->count()) Export CSV @endif
Reset
{{-- Report Table --}} @if(isset($reports) && $reports->count())
Filtered Transfers
@foreach($reports as $index => $report) @endforeach
# Location ID Invoice Number Part No Description Transfer Qty Rack Created At
{{ $index + 1 }} {{ $report->location_id }} {{ $report->invoice_number }} {{ $report->part_no }} {{ $report->asn_description ?? '-' }} {{ $report->transfer_qty }} {{ $report->rack }} {{ $report->formatted_date }}
@elseif(request()->has('locationcode'))
No data found for location {{ request('locationcode') }}.
@endif
@endsection