@extends('admin.layout.app') @section('title', $project->title) @section('content')
{{ $project->title }}

Slug: {{ $project->slug }}

@if($project->featured_image)

Featured Image:

@endif @if($project->images->count())

Gallery:

@foreach($project->images as $img) @endforeach
@endif

Short Description:

{{ $project->short_description }}

Long Description:

{!! nl2br(e($project->long_description)) !!}

Meta Title: {{ $project->meta_title }}

Meta Description: {{ $project->meta_description }}

Back to Projects
@endsection