{{-- * LaraClassifier - Classified Ads Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com * * LICENSE * ------- * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the inclusion * of the above copyright notice. If you Purchased from CodeCanyon, * Please read the full License from here - http://codecanyon.net/licenses/standard --}} @extends('layouts.master') @php $apiResult ??= []; $posts = (array)data_get($apiResult, 'data'); $totalPosts = (int)data_get($apiResult, 'meta.total', 0); $pagePath ??= null; $pageTitles = [ 'list' => [ 'icon' => 'fas fa-bullhorn', 'title' => t('my_listings'), ], 'archived' => [ 'icon' => 'fas fa-calendar-times', 'title' => t('archived_listings'), ], 'favourite' => [ 'icon' => 'fas fa-bookmark', 'title' => t('favourite_listings'), ], 'pending-approval' => [ 'icon' => 'fas fa-hourglass-half', 'title' => t('pending_approval'), ], ]; @endphp @section('content') @includeFirst([config('larapen.core.customizedViewPath') . 'common.spacer', 'common.spacer'])