@extends('front.layouts.app') @section('meta_seo') @endsection @section('content')
{!! $project->description !!}
@foreach($project->Files()->get() as $img)
@endforeach
{{__('front.project-Contac Us')}}
@if(!empty( $project->term4))
{{__('front.project-Visit Site')}}
@endif @if(!empty( $project->term1))
{{__('front.project-Google Play')}}
@endif @if(!empty( $project->term2))
{{__('front.project-App Store')}}
@endif @if(!empty( $project->term3))
{{__('front.project-Behance')}}
@endif
@if($prev = \App\Models\Project::where('id', '<', $project->id)->orderBy('id', 'desc')->first() )
{{__('front.project-Previous Project')}}
{{$prev->title}}
@endif
@if($next = \App\Models\Project::where('id', '>', $project->id)->orderBy('id', 'asc')->first() )
{{__('front.project-Next Project')}}
{{$next->title}}
@endif
@endsection @section('js') @endsection