@extends('themes.'.config('site_settings.themes_dir').'.layouts.master') @section('title') {{$blog_title}} @endsection @section('canonical', url()->current()) @section('content')

{{$blog_title}}

@foreach(\App\Models\BlogDetail::where('slug',$slug)->get() as $blog_detail)
@php $now_date = \Carbon\Carbon::now(); $created_date = $blog_detail['created_at']; $day = $created_date->diffInDays($now_date,false); if($day<1) $value = 'Bugün yazıldı.'; else $value = $day . ' gün önce yazıldı.' @endphp {{ $value }}
{!! $blog_detail['blog_content'] !!}
@endforeach @include('/themes.'.config('site_settings.themes_dir').'.layouts.partials.rating')
@if (session('success_comment') == 'success_comment')
{{session()->get('success_message')}}
@php session()->put('success_comment','null') @endphp
@endif @if (session('warning_comment') == 'warning_comment')
{{session()->get('warning_message')}}
@php session()->put('warning_comment','null') @endphp
@endif
YORUMLAR
@if(!empty(\App\Models\Comment::where('status',1)->where('blog_id',$id)->get())) @foreach(\App\Models\Comment::where('status',1)->where('blog_id',$id)->get() as $blog) @endforeach @else

Bu yazı için herhangi bir yorum yapılmamış.

İlk yorumu siz yapın

@endif

SİZ DE YORUM YAZIN

  Captca Değiştir
@include('/themes.'.config('site_settings.themes_dir').'.layouts.partials.technical_form') @endsection