@extends('layouts.app') @section('title', 'Projects') @section('content')
| Project Name | Customer Name | Billing Type | Status | Actions |
|---|---|---|---|---|
| {{ $project->name }} | {{ optional($project->customer)->name ?? 'No Customer' }} | {{ $project->billing_type == 'fixed' ? 'Fixed Price' : 'Hourly Rate' }} | @php $statusColors = [ 'active' => 'bg-success', 'completed' => 'bg-info', ]; @endphp {{ ucfirst($project->status) }} | |
|
No projects found. Create New Project |
||||