@extends('backend.layouts.master') @push('style') @endpush @section('title', __('static.booking.all')) @section('content') @use('App\Enums\PaymentStatus') @use('App\Models\BookingStatus') @use('App\Helpers\Helpers') @use('App\Enums\ServiceTypeEnum') @php $statuses = BookingStatus::whereNull('deleted_at')->where('status', true)->get(); $paymentStatuses = PaymentStatus::PAYMENT_STATUS; $PaymentMethods = Helpers::getActivePaymentMethods() ?? []; @endphp