@extends('frontEnd.home.front_master') @push('css') @endpush @push('css') @endpush @section('main_content')

{{$news->news_title}}

{{$news->publish_date != ""? dateConvert($news->publish_date):''}}
{{$news->category->category_name}}
{{$news->news_title}}

{!!$news->news_body!!}

@lang('communicate.notice_board')

@if(isset($notice_board)) @foreach($notice_board as $notice)

{{$notice->publish_on != ""? dateConvert($notice->publish_on):''}}

{{$notice->notice_title}}

@endforeach @endif

@lang('front_settings.related_news')

@foreach($otherNews as $theNews)

{{$theNews->publish_date != ""? dateConvert($theNews->publish_date):''}}

{{$theNews->news_title}}

@endforeach
@endsection