@if (\Request::is('rtl')) @else @endif {{ env('APP_NAME') }} @if(env('APP_ENV') == 'production' || env('APP_ENV') == 'staging') @php $manifest = json_decode(file_get_contents( public_path('build/manifest.json') )); $cssPath = 'resources/css/app.css'; $jsPath = 'resources/js/app.js'; $compiledJsPath = 'public/assets/js/compiled.js'; @endphp @else @vite(['resources/css/app.css', 'resources/js/app.js', 'public/assets/js/compiled.js']) @endif @inertiaHead @auth @yield('auth') @endauth @guest @yield('guest') @endguest @inertia @if(session()->has('success'))

{{ session('success')}}

@endif @stack('rtl') @stack('dashboard')