mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-23 19:32:11 +00:00
29 lines
648 B
PHP
29 lines
648 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>HOME</title>
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap" rel="stylesheet">
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
@include('header')
|
|
</header>
|
|
|
|
<p>
|
|
<img src="img/app.png" weight=700px height=400px alt="">
|
|
</p>
|
|
|
|
@include('menu')
|
|
|
|
@yield('content')
|
|
</body>
|
|
|
|
</html>
|