@extends('admin.layouts.inventory') @section('title', 'Projects') @section('content')
No projects found for this tenant.
@else| Customer | Service user | kW | Location | Status | Action |
|---|---|---|---|---|---|
| {{ $project->customer_name }} | {{ $project->assignedUser?->name ?? '—' }} | {{ $project->kw !== null ? number_format((float) $project->kw, 2) : '—' }} | {{ $location !== '' ? $location : '—' }} | @php $badgeClass = match ($status) { 'pending_approval' => 'pending_approval', 'completed' => 'completed', 'rejected' => 'cancelled', default => 'active', }; @endphp {{ str($status)->replace('_', ' ')->title() }} | @include('admin.inventory.partials.action_icons', [ 'view' => route('admin.inventory.projects.show', $project), ]) |