@extends('includes.master')
@section('title', 'Event')
@section('style-section')
@section('content')
@php
$cartList = session('facilities_cart');
$cart_count = isset($cartList['ids']) && $cartList['ids'] ? count($cartList['ids']) : 0;
$cart_count = $cart_count != '' ? $cart_count : 0;
if (empty($cartList['ids'])) {
$cartList = ['totalPrice' => 0.0, 'ids' => []];
}
$currencySymbol = isset($currency['currencySymbol'])
? (CheckEmptyNullVar($currency['currencySymbol']) != ''
? $currency['currencySymbol']
: '$')
: '$';
$GeneralSettings = GeneralSettings();
@endphp