@extends('user.components.layout') @push('css') @endpush @section('main')
@foreach ($cats as $cat) @if (count($cat['blogs']) > 0)
{{ $cat['cat_title'] }}
View All
@foreach ($cat['blogs'] as $blog)

{{$blog['employee']['emp_name']}}

{{$blog['blog_title']}}
@endforeach
@endif @endforeach
@endsection