@extends('layouts.app') @section('title','Requisitions') @section('page-title','Material & Tool Requisitions') @section('content')
@forelse($requisitions as $req) @empty @endforelse
Req NoTypeItemProjectQtyRequested ByUrgencyStatusNext Actor
{{ $req->req_number }} {{ $req->type }} {{ Str::limit($req->item_description,35) }} {{ $req->project->name ?? '-' }} {{ $req->quantity }} {{ $req->unit }} {{ $req->requester->name ?? '-' }} {{ $req->urgency }} @php $meta = $req->status_meta; @endphp {{ $meta['label'] }} {{ $req->next_actor }} View
No requisitions found.
@endsection