@extends('layouts.app') @section('title') Catalog @endsection @section('meta') @endsection @section('content')
@if ($items->count() > 0)
@foreach ($items->all() as $item) @endforeach
@else

Nothing found

Looks like there are no items to display for this query.

@endif
{{ $items->links('pagination::bootstrap-4') }}
@endsection