Files
numstation-web/wave/resources/views/do.blade.php

38 lines
1.1 KiB
PHP
Raw Normal View History

2023-12-22 12:35:55 +08:00
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
@if(isset($seo->title))
<title>{{ $seo->title }}</title>
@else
<title>{{ setting('site.title', 'Laravel Wave') . ' - ' . setting('site.description', 'The Software as a Service Starter Kit built on Laravel & Voyager') }}</title>
@endif
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge"> <!-- -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="url" content="{{ url('/') }}">
<link rel="icon" href="/wave/favicon.png" type="image/x-icon">
<meta name="robots" content="noindex,nofollow">
<meta name="googlebot" content="noindex,nofollow">
@if(isset($seo->description))
<meta name="description" content="{{ $seo->description }}">
@endif
<!-- Styles -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.4/tailwind.min.css">
@livewireStyles
</head>
<body>
@livewire('wave.deploy-to-do')
@livewireScripts
</body>
</html>