@include('layouts.head') @include('layouts.top-app-bar') @include('layouts.drawer')
@inertia
@include('layouts.top-app-bar-menus') @php $component = Route::current()->parameter('component'); $split1 = explode('::', $component); $path = null; if (count($split1) !== 1) { $split = explode('/', $split1[0]); $vendor = $split[0]; $module = $split[1]; $path = "vendor/$vendor/$module/index.js"; } @endphp @empty($path) @else @endempty @routes @client @vite('app')