@extends('layout.layout') @section('footwear-request','active') @section('content') Footwear Request @include('partials.search-table') Footwear Request Status @forelse ($footwearRequests as $request) @php $statusColors = [ 'pending' => '#b2b2b2', 'picking' => '#FEDD00', 'ready' => '#28a745', 'not_available' => '#dc3545' ]; $borderColor = $statusColors[$request->status]; @endphp @if ($request->status == 'pending') Pending @elseif ($request->status == 'picking') Picking @elseif ($request->status == 'ready') Ready @else Not Available @endif {{ $request->product_name }} Size: {{ $request->size }} Article: {{ $request->product_article }} UPC: {{ $request->upc }} Associate: {{ $request->employee_name }} @empty No footwear requests found. @endforelse @endsection @section('javascript') @endsection