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

{{ __('notices.notices') }}

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

>

{{ __('notices.notices') }}

{{ __('notices.latest_updates') }}

{{ __('notices.notices') }}

{{ __('notices.notices_description') }}

@foreach ($notices as $notice)

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

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

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

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