@extends('layouts.dashboard.superadminapp') @section('title', 'Quality Control Management') @push('styles') @endpush @section('content')

Quality Control Management

@forelse($routeCards as $rc)
{{ $rc->route_no }}
{{ \Illuminate\Support\Str::limit($rc->company_name, 25) }}
{{ $rc->qc_count }} Steps
Project No: {{ $rc->project_no ?: '-' }}
Route Date: {{ $rc->route_date ? date('d M Y', strtotime($rc->route_date)) : '-' }}
Open QC Board
@empty
No QC Projects Found

Projects requiring Quality Control will appear here.

@endforelse
@endsection