@extends('admin.layout.master') @section('css') @endsection @section('content') @php $activeTypeTab = $activeTypeTab ?? ''; $typeCounts = $typeCounts ?? []; $typeTabs = array_merge( ['' => __('admin.all')], collect(App\Enums\ContactType::toArray())->mapWithKeys( fn ($type) => [$type => __('apis.contact_type.' . $type)] )->all() ); $typeTabColors = [ '' => 'primary', App\Enums\ContactType::TRIP_ISSUE => 'danger', App\Enums\ContactType::PAYMENT_ISSUE => 'warning', App\Enums\ContactType::DAMAGED_SCOOTER => 'danger', App\Enums\ContactType::SUGGESTION => 'info', App\Enums\ContactType::GENERAL_INQUIRY => 'primary', ]; @endphp