@extends('front.layout') @section('main')
@isset($info) @component('front.components.alert') @slot('type') info @endslot {!! $info !!} @endcomponent @endisset @if ($errors->has('search')) @component('front.components.alert') @slot('type') error @endslot {{ $errors->first('search') }} @endcomponent @endif
@foreach($posts as $post) @include('front.brick-standard', compact('$post')) @endforeach
{{ $posts->links('front.pagination') }}
@endsection