@extends('web.layouts.container') @section('content')

{{$page->title}}

{!! $page->description !!}

@if(count($news)) @foreach($news as $new)
{{$new->catName}}

{{$new->title}}

{{wordLimit(stripText($new->description), 24)}}

{{__('articles.updated_on')}}

{{date('d M Y', strtotime($new->created_at))}}

{{__('main.more')}}
@endforeach @else {{session('search') ? __('articles.no_search_result') : __('articles.no_data')}} @endif
{{$news->links()}}

{{__('main.linkedin_posts')}}

@if(($settings['linkedin_post_1'] ?? null))
{!! $settings['linkedin_post_1'] !!}
@endif @if(($settings['linkedin_post_2'] ?? null))
{!! $settings['linkedin_post_2'] !!}
@endif @if(($settings['linkedin_post_3'] ?? null))
{!! $settings['linkedin_post_3'] !!}
@endif
{{-- @if(count($news) > 6)--}} {{-- --}} {{-- {{__('main.load_more')}}--}} {{-- --}} {{-- @endif--}}
@endsection @section('inner_js') @endsection