@extends('frontend.layouts.app') @section('title', 'Publications') @section('meta', 'Publications Meta Description') @section('content')
Banner Image

{{ __('publications.publications') }}

{{ __('publications.home') }}

>

{{ __('publications.publications') }}

{{ __('publications.our_research') }}

{{ __('publications.publications') }}

{{ __('publications.publications_description') }}

@foreach ($publications as $publication)
{{ $publication->name_en }}
date

{{ \Carbon\Carbon::parse($publication->published_date)->format('d M, Y') }}

@foreach ($publication->tags as $tag) {{ app()->getLocale() == 'np' ? $tag->name_np : $tag->name_en }} @endforeach

{{ app()->getLocale() == 'np' ? Str::limit(html_entity_decode(strip_tags($publication->description_np)), 150) : Str::limit(html_entity_decode(strip_tags($publication->description_en)), 150) }}

{{ __('publications.read_more') }}
@endforeach
@endsection @push('scripts') @endpush