@extends('adminlte::page') @section('title', 'Projects') @section('content_header')

Projects

@endsection @section('content')
Create New Project
@foreach ($projects as $project) @endforeach
ID Name Code Description Address Status Supervisors Senior Supervisors Updated At Created At Actions
{{ $project->id }} {{ $project->name }} {{ $project->code }} {{ $project->description }} {{ $project->address ?? 'N/A' }} {{ ucfirst($project->status) }} {{ $project->assign_supervisors->map(fn($supervisor) => $supervisor->name)->implode(', ') ?? 'N/A' }} {{ $project->assign_senior_supervisors->map(fn($seniorSupervisor) => $seniorSupervisor->name)->implode(', ') ?? 'N/A' }} {{ $project->updated_at }} {{ $project->created_at }} Edit
@csrf @method('DELETE')
@endsection