@extends('layouts.app') @section('content')
{{--

{{ (App::getLocale() == 'tr') ? $pages->page_title :$pages->page_title_en }}

--}}

{{ App::getLocale() == 'tr' ? $singleBlog->title : $singleBlog->title_en }}


{!! App::getLocale() == 'tr' ? $singleBlog->content : $singleBlog->content_en !!}

{!! App::getLocale() == 'tr' ? "Diğer Yazılar" : "Other Posts" !!}


@foreach ($otherBlog as $key => $nws)
{!! App::getLocale() == 'tr' ? $nws->title : $nws->title_en !!}
@endforeach
@endsection