@extends('layouts.app') @section('title', 'Projects') @section('content')
Add Project
@if($projects->count())
@foreach($projects as $project) @endforeach
# Project Name Company Location Status Start Date Actions
{{ $loop->iteration + ($projects->currentPage() - 1) * $projects->perPage() }} {{ $project->project_name }} {{ $project->company->name ?? '—' }} {{ $project->city ?? '' }}{{ $project->district ? ', ' . $project->district : '' }} {{ ucfirst(str_replace('_', ' ', $project->status)) }} {{ $project->start_date ? $project->start_date->format('d M Y') : '—' }}
@csrf @method('DELETE')
{{ $projects->links() }}
@else
No Projects Yet

Create your first real estate project.

Create Project
@endif
@endsection