generated from Flycro/laravel-nuxt
13 lines
332 B
PHP
13 lines
332 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
<title>{{ config('app.name') }}</title>
|
|
<script>
|
|
window.opener.postMessage(JSON.parse('{!! json_encode($message) !!}'), '{{ config("app.frontend_url") }}');
|
|
window.close();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
{{ __('Redirecting...') }}
|
|
</body>
|
|
</html> |