@extends('layouts.app') @section('page_title', $project->name) @section('page_description', __('projects.description')) @section('page_keywords', __('projects.keywords')) @section('og_title', $project->name) @section('og_description', __('projects.description')) @section('twitter_title', $project->name) @section('twitter_description', __('projects.description')) @section('page_content')

{{ $project->name }}

@if($project->location !== null)
@lang('projects.details.location') {{ $project->location }}
@endif @if($project->workers !== null)
@lang('projects.details.workers') {{ $project->workers }}
@endif @if($project->starting_date !== null)
@lang('projects.details.st-date'){{ optional($project->starting_date)->format('m/d/Y') }}
@endif @if($project->finish_date !== null)
@lang('projects.details.fin-date'){{ optional($project->finish_date)->format('m/d/Y') }}
@endif
{!! $project->description !!}
@if($otherprojects->count() > 0)
@lang('projects.other')
@endif
@endsection