{{ __('Project Details') }}: {{ $project->title }}

{{ __('Edit Project') }} {{ __('Back to Projects') }}
@if($project->featured_image) {{ $project->title }} @endif

{{ $project->title }}

Category: {{ $project->category->name }}
@if($project->client)
Client: {{ $project->client }}
@endif @if($project->location)
Location: {{ $project->location }}
@endif @if($project->completion_date)
Completion Date: {{ \Carbon\Carbon::parse($project->completion_date)->format('M d, Y') }}
@endif

Fabric Description

{!! nl2br(e($project->description)) !!}
@if($project->images->isNotEmpty())

Fabric Gallery

@foreach($project->images as $image)
{{ $image->caption ?? 'Fabric Image' }} @if($image->caption)
{{ $image->caption }}
@endif
@endforeach
@endif