@extends('frontend.layouts.app') @section('page_content')

{{LangTranslate::translate($project->name, $project->ar_name)}}

{{LangTranslate::translate($project->location, $project->ar_location)}}

{{LangTranslate::translate($project->head_line_title ?? '', $project->ar_head_line_title ?? '')}}

{!!LangTranslate::translate($project->description ?? '', $project->ar_description ?? '')!!}

@if(count($project->specifications) > 0)
@foreach($project->specifications as $key => $specification) @if($specification->theme == 'green-bg')

{{LangTranslate::translate($specification->title ?? '', $specification->ar_title ?? '')}}

{{LangTranslate::translate($specification->name ?? '', $specification->ar_name ?? '')}}

{{LangTranslate::translate($specification->value ?? '',$specification->ar_value ?? '')}}

@else
{{LangTranslate::translate($specification->title ?? '', $specification->ar_title ?? '')}}

{{LangTranslate::translate($specification->name ?? '', $specification->ar_name ?? '')}}

{{LangTranslate::translate($specification->value ?? '',$specification->ar_value ?? '')}}

@endif @endforeach
@endif
@if(count($project->galleryImages) > 0)
@foreach($project->galleryImages as $gkey => $galleryImage)
@endforeach
@foreach($project->galleryImages as $ikey => $igalleryImage)
@endforeach
@endif
@endsection