Edit File: ced69d5832625897f3d818a26c045b00.php
<!DOCTYPE html> <html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>"> <title><?php echo e(config('app.name', 'Laravel')); ?></title> <!-- Fonts --> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" /> <meta name="robots" content="noindex, nofollow"> <!-- Scripts --> <?php echo app('Illuminate\Foundation\Vite')(['resources/css/app.css', 'resources/js/app.js']); ?> </head> <body class="font-sans antialiased"> <div class="min-h-screen bg-gray-900 "> <?php $__split = function ($name, $params = []) { return [$name, $params]; }; [$__name, $__params] = $__split('layout.navigation', []); $__html = app('livewire')->mount($__name, $__params, 'lw-995359639-0', $__slots ?? [], get_defined_vars()); echo $__html; unset($__html); unset($__name); unset($__params); unset($__split); if (isset($__slots)) unset($__slots); ?> <!-- Page Heading --> <?php if(isset($header)): ?> <header class="bg-gray-800 shadow"> <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"> <?php echo e($header); ?> </div> </header> <?php endif; ?> <!-- Page Content --> <main> <?php echo e($slot); ?> </main> </div> </body> </html> <?php /**PATH /home/okaminime0881/anime/resources/views/layouts/app.blade.php ENDPATH**/ ?>
Back