@extends('layouts.app') @section('content') @include('partials.page-header') @php $countries = get_terms([ 'taxonomy' => 'icarus_stockist_country', 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => true, ]); @endphp @foreach ($countries as $country) @php $stockists = get_posts( array( 'post_type' => 'icarus_stockist', 'orderby' => 'title', 'sort_order' => 'asc', 'tax_query' => [ [ 'taxonomy' => 'icarus_stockist_country', 'terms' => $country->term_id, ], ], ) ); @endphp
{{$country->name}}
@endforeach {!! get_the_posts_navigation() !!} @endsection