@props(['page_title' => false, 'title_bar_right' => false ])
AuditionAdmin
@vite(['resources/css/app.css', 'resources/js/app.js'])
{{-- Code below from https://codepen.io/ryangjchandler/pen/WNQQKeR --}}
{{-- JS for sorting tables by a column --}}
{{-- Sortable columns need this on their : @click="sortByColumn" class="cursor-pointer select-none" --}}
{{-- One level above the table needs x-data="data()" --}}
{{-- tbody needs x-ref="tbody" --}}
@if(request()->is('*admin*'))
@else
@endif
@if($page_title)
{{ $page_title }}
@if($title_bar_right)
{{ $title_bar_right }}
@endif
@endif
{{ $slot }}
|