{{-- The ALL listings page --}} {{-- Include the Hero Image --}} @include('partials._hero') {{-- Include the Search Bar --}} @include('partials._search')
@unless (count($listings) == 0) {{-- @unless is like @if NOT --}} @foreach ($listings as $listing) {{-- passing $listing to the Blade Component (listing-card.blade.php) --}} {{-- Passing Data To Components: https://laravel.com/docs/9.x/blade#passing-data-to-components --}} @endforeach @else

No listings found

@endunless
{{ $listings->links() }} {{-- Pagination --}}