@extends('website.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 (request('category') || request('search'))
{{ $posts->count() }} {{ __('result_found_for') }} {{ request('category') }} {{ request('search') ? '&' : '' }} {{ request('search') }}
@endif --}} @if ($posts->count() > 0) @foreach ($posts as $post) @endforeach @else
@endif
@endsection