@extends('layouts.app') @section('content') @php $post_terms = [ 'category' => [ 'terms' => get_terms( array( 'taxonomy' => 'category', 'hide_empty' => true, )), 'label_name' => 'theme' ], 'post_applicability' => [ 'terms' => get_terms( array( 'taxonomy' => 'post_applicability', 'hide_empty' => true, )), 'label_name' => 'applicability' ] ] @endphp @include('partials.ajax-filter', ['terms' => $post_terms])