@extends('blogs.layout') @php $bg = asset('admin/uploads/'.$global_d['blog_banner']); @endphp @section('metatags') {{$global_d['blog_meta_title'] ?? ''}} @endsection @section('css') @endsection @section('content')
@foreach ($blogs->where('featured4',1) as $index => $blog)

{{$blog->title}}

@endforeach

SAVE SUM MORE

@foreach ($blogs->where('featured1',1) as $index => $blog)
{{$blog->cat_title}}

{{$blog->title}}..

{{$blog->short_des}}


Read More
@if (($index + 1) % 3 == 0)
@endif @endforeach

FEATURED BLOGS

@foreach ($blogs->where('featured2',1) as $index => $blog)
{{$blog->cat_title}}

{{substr($blog->title,0,25)}}..

{{substr($blog->short_des, 0,50)}}..


Read More
@if (($index + 1) % 3 == 0)
@endif @endforeach

MOST POPULAR BLOGS

@foreach ($blogs->where('featured3',1) as $index => $blog)
{{$blog->cat_title}}

{{substr($blog->title,0,25)}} ..

{{substr($blog->short_des, 0,50)}} ..


Read More
@if (($index + 1) % 3 == 0)
@endif @endforeach

Advertise With Us

@endsection @section('js') @endsection