@php($title = 'Update Requests') @php($heading = 'Update Requests') @php($sidebar = view()->make('dashboard.partials.customer-sidebar')->render()) @extends('layouts.dashboard', compact('title','heading','sidebar')) @section('content')
@if(session('status'))
{{ session('status') }}
@endif
@csrf
@forelse(($requests ?? []) as $r) @empty @endforelse
Product Version Status Updated
{{ optional($r->product)->name ?? '—' }} {{ $r->version_requested ?? '—' }} {{ ucfirst($r->status) }} {{ \Illuminate\Support\Carbon::parse($r->updated_at)->toDayDateTimeString() }}
No update requests yet
{{ isset($requests) && method_exists($requests, 'links') ? $requests->links() : '' }}
@endsection