@extends('layouts.frontend.master') @section('content')

{{ app()->isLocale('ar') ? $article->title_ar : $article->title_en }}

{{ $article->created_at->format('d-m-Y') }}

{!! app()->isLocale('ar') ? $article->description_ar : $article->description_en !!}

{{ __('website.topViews') }}

@foreach ($topViews as $topView)

{{ app()->isLocale('ar') ? $topView->title_ar : $topView->title_en }}

{!! Str::limit( app()->isLocale('ar') ? $topView->description_ar : $topView->description_en, 15) !!}

{{ __('website.seeMore') }}
@endforeach
@endsection