@php // Đọc nội dung của tập tin manifest.json $manifestPath = public_path('storage/main/build/asset-manifest.json'); $manifestContent = file_exists($manifestPath) ? file_get_contents($manifestPath) : null; // Parse JSON thành mảng PHP $manifestData = $manifestContent ? json_decode($manifestContent, true) : null; // Lấy giá trị của key 'entrypoints' và lấy ra giá trị tại index 0 và 1 $entrypoints = $manifestData ? $manifestData['entrypoints'] : null; $entrypoint0 = $entrypoints ? $entrypoints[0] : null; $entrypoint1 = $entrypoints ? $entrypoints[1] : null; @endphp React App