@extends('client.layout.master') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp @section('title', Translation::getValue('news_detail', $locale)) @section('content')

{{ $news->title }}

@if($news->main_image)
{{ $news->title }}
@endif @if($news->short_description)

{{ $news->short_description }}

@endif
{!! $news->content !!}
@if(!empty($news->gallery)) @endif @if($news->video_url)
@endif
@endsection