@extends('welcome') @section('title', 'News') @section('content')

{{ __('News') }}

{{-- @foreach ($news as $news) @if (App()->getLocale() == 'en')
Card
{{ $news->head_en }}
{{ $news->created_at }}
{!! html_entity_decode($news->desc_en) !!}
@else
Card
{{ $news->head_ar }}
{{ $news->created_at }}
{!! html_entity_decode($news->desc_ar) !!}
@endif @endforeach --}} @foreach ($new as $news) @if (app()->getLocale() == 'en')
...
{{ $news->head_en }}

{{ $news->created_at }}

{!! html_entity_decode($news->desc_en) !!}


@else
...
{{ $news->head_ar }}

{{ $news->created_at }}

{!! html_entity_decode($news->desc_ar) !!}


@endif @endforeach
@endsection