| Server IP : 138.197.107.151 / Your IP : 216.73.217.7 Web Server : Apache/2.4.58 (Ubuntu) System : Linux BloxBy-Builder 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : wpbetasites_mrakzqskir ( 1022) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/shark/resources/views/ |
Upload File : |
@php
$jsFile = collect(File::files(public_path('react/assets')))
->filter(fn($f) => $f->getExtension() === 'js')
->sortByDesc(fn($f) => $f->getCTime()) // latest file first
->first()
->getFilename();
$cssFile = collect(File::files(public_path('react/assets')))
->filter(fn($f) => $f->getExtension() === 'css')
->sortByDesc(fn($f) => $f->getCTime())
->first()
->getFilename();
@endphp
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title> {{ ($title ?? 'Bloxby') . ' | ' . config('app.name') }} </title>
<link rel = "icon" type = "image/png" href = "{{ asset('react/assets/bloxy-favicn (2)-IjkHjtqO.png')}}">
<script type="module" crossorigin src="{{ asset('react/assets/' . $jsFile) }}"></script>
<link rel="stylesheet" crossorigin href="{{ asset('react/assets/' . $cssFile) }}">
</head>
<body>
<div id="root"></div>
</body>
</html>