Files
lucent-laravel/front/views/layouts/channel.blade.php
T

16 lines
419 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<!DOCTYPE html>
2024-10-07 16:34:53 +03:00
<html lang="en">
2023-10-02 23:10:49 +03:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
2024-10-07 16:34:53 +03:00
<title>@yield('title') - {{ config("lucent.name") }}</title>
@include("lucent::includes.assets")
2023-10-02 23:10:49 +03:00
<link rel="icon" type="image/x-icon" href="/favicon.ico">
</head>
2024-08-14 22:04:34 +03:00
<body>
2024-08-15 14:44:53 +03:00
@yield('content')
2023-10-02 23:10:49 +03:00
</body>
</html>