add tooltip to sidebar buttons remove profile for admin fix mobile menu not opening in home page fix deal image input modal size in mobile view make image scrollable in input modal fix explore page filters are not clickable when recent search is maxed out change UI for the recent searches add seeder for categories improve deal card ui in broker dashboard
16 lines
619 B
PHP
16 lines
619 B
PHP
@php use App\Enums\ReportStatus; @endphp
|
|
<x-dashboard.admin.layout title="Manage Deals">
|
|
<x-slot:heading>
|
|
<x-dashboard.page-heading
|
|
title="Manage Deals"
|
|
description="Approve or reject deals"
|
|
/>
|
|
</x-slot:heading>
|
|
<div class="flex flex-col items-center justify-center space-y-4 md:space-y-8 px-4 pb-4 pt-0 md:px-8 md:pb-8">
|
|
<x-dashboard.admin.pending-deals :deals="$pendingDeals" />
|
|
<x-dashboard.admin.all-deals :deals="$activeDeals" />
|
|
</div>
|
|
<x-dashboard.user.deal-modal />
|
|
@vite('resources/js/admin-deals.js')
|
|
</x-dashboard.admin.layout>
|