@php $locale = app()->getLocale(); @endphp @extends('layouts.webapp') @push('meta_tags') @if (app()->getLocale() == 'en') @section('title', 'NoticeBoard') @else @section('title', 'নোটিশ বোর্ড') @endif @endpush @section('content') Search @foreach ($notices as $notice) {{-- --}} @if ($locale == 'en') {{ $notice->title }} @else {{ $notice->title_bn }} @endif @lang('home.publishon') @if ($locale == 'en') : {{ $notice->created_at->format('d-m-Y') }} @else ঃ {{ en2bn($notice->created_at->format('d-m-Y')) }} @endif Download @endforeach Select Department All Department{{ $notices->count() }} @foreach ($departments as $department) @if ($locale == 'en') {{ $department->name }} @else {{ $department->name_bn }} @endif 0 @endforeach @endsection