@extends('layouts.app') @section('content') @php $isActive = strtolower((string) $project->status) === 'active'; @endphp

Project Preview

Review the project presentation, links, and technology stack before making further changes.

@if(!empty($project->image)) {{ $project->project_name }}
@else
No project image uploaded

The project will still be saved, but adding a preview image will make it feel much stronger on the portfolio.

@endif
{{ ucfirst($project->status) }} Project

{{ $project->project_name }}

{{ $project->short_description }}

Project Details
Project ID #{{ $project->id }}
Status {{ ucfirst($project->status) }}
Image {{ !empty($project->image) ? 'Uploaded' : 'Not added' }}
Technologies {{ $project->technologies->count() }}
Project Links
Technology Stack
@if($project->technologies->isNotEmpty())
@foreach($project->technologies as $technology) {{ $technology->name }} @if($technology->icon) {{ $technology->icon }} @endif @endforeach
@else @endif
Timeline
Created {{ $project->created_at ? $project->created_at->format('d M, Y h:i A') : 'Not available' }} {{ $project->created_at ? $project->created_at->diffForHumans() : '' }}
Last Updated {{ $project->updated_at ? $project->updated_at->format('d M, Y h:i A') : 'Not available' }} {{ $project->updated_at ? $project->updated_at->diffForHumans() : '' }}
@endsection @section('styles') @endsection