@extends('themes.'.config('site_settings.themes_dir').'.layouts.master')
@section('title','Blog yazılarımız '. $page_title_number)
@section('description', $page_number .' Otomatik kapı, bariyer ve diğer konularda ele aldığımız, kullanıcıları bilgilendirici tarzdaki yazıları burada bulabilirsiniz.')
@section('canonical', url()->current())
@section('content')
Blog
@php $blog_detail = \App\Models\BlogDetail::where('status',1)->paginate(5); @endphp
@foreach($blog_detail as $blog)
@endforeach
{!! str_replace('/?', '?', $blog_detail->render()) !!}
@include('/themes.'.config('site_settings.themes_dir').'.layouts.partials.technical_form')
@endsection