@extends(getTemplate('admin')) @section('content') @push('custom-css') @endpush @php $groups = \Spatie\Permission\Models\Role::get(); $g = ''; foreach ($groups as $key => $group) { $g .= $group->name . ','; } @endphp

{{__('admin.takenplace_sidebar')}}

takenplace Module Settings

@php $companies = \App\Models\Company::where('type', '!=','team')->get() @endphp
@php $currencies = \App\Models\Currency::get(); @endphp
@php $gateways = setting('default_payment_gateways'); @endphp

Checkout & Booking Settings

@php $display = ( setting("guest_registration_mandatory", 'takenplace') ) ? 'block' : 'none'; @endphp
@php $event_block_start = setting('event_block_start_date', 'takenplace'); $event_block_end = setting('event_block_end_date', 'takenplace'); @endphp

Booking Options

@php $groups = ''; $g = \Spatie\Permission\Models\Role::get(); foreach($g as $group){ $groups .= $group->name.','; } @endphp

Email Custom Messages

@if(auth()->user()->is_super_admin OR (!auth()->user()->is_super_admin && !setting('multihub')))

Design Layouts

Membership Module Designs & Layouts

Turn on new designs for this module from the page listing to the booking page. View the screenshot preview of how it will generally look if you enable it.

To return to the default designs, turn off all switches below.

{{--
--}}
Membership Booking Layouts
{{--
--}}
@endif @if(auth()->user()->is_super_admin)

Super Admin

{{-- @if(module_exists('credit_wallet'))
@php $displayxxx = ( setting('credit', 'takenplace') ) ? 'flex' : 'none'; @endphp
@php $credits = new Credit(); @endphp @if($credits->get()->exists()) @else Add New Credit @endif
@endif--}}
@endif
@push('custom-js') @endpush @endsection