@extends('frontend.layouts.app') @section('description') @php $data = metaData('blog'); @endphp {{ $data->description }} @endsection @section('og:image') {{ asset($data->image) }} @endsection @section('title') {{ $data->title }} @endsection @section('main')
@if ($posts->count() > 0) @foreach ($posts as $post) @endforeach @else
@endif
@endsection