@extends('admin::layouts.content') @section('page_title') {{ __('bookingproduct::app.admin.sales.bookings.title') }} @stop @push('css') @endpush @push('scripts') @endpush @section('content')
@php $viewType = request()->view_type ?? "table"; @endphp @if ($viewType == "table") @else @include('bookingproduct::admin.sales.bookings.index.calendar') @endif
@stop