@extends('frontLayouts.frontApp') @section('headerContent')

{{ $data->name }}

@csrf
@endsection @section('class') experiment our_museums_main @endsection @section('frontContent')
#
{{ LaravelLocalization::getCurrentLocale() == 'ar' ? $data->description_ar : $data->description_en }}
#
@foreach($postsLatest as $item)
# #

{{ LaravelLocalization::getCurrentLocale() == 'ar' ? $item->name_ar : $item->name_en }}

{{ LaravelLocalization::getCurrentLocale() == 'ar' ? \Illuminate\Support\Str::words($item->description_ar,14) : \Illuminate\Support\Str::words($item->description_en,14)}}

{{ __('lang.read_more') }}
@endforeach @if(!empty($data->ad_image)) @endif @foreach($posts as $item)
# #

{{ LaravelLocalization::getCurrentLocale() == 'ar' ? $item->name_ar : $item->name_en }}

{{ LaravelLocalization::getCurrentLocale() == 'ar' ? \Illuminate\Support\Str::words($item->description_ar,14) : \Illuminate\Support\Str::words($item->description_en,14) }}

{{ __('lang.read_more') }}
@endforeach
{{$posts->links("pagination::bootstrap-4")}}
@endsection