|
@@ -1,18 +1,20 @@
|
|
|
-<!DOCTYPE html>
|
|
|
|
|
-<html>
|
|
|
|
|
-<head>
|
|
|
|
|
- <meta charset="utf-8">
|
|
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
- <title>Hello</title>
|
|
|
|
|
|
|
+@extends('layouts.users')
|
|
|
|
|
+
|
|
|
|
|
+@inject('custom', 'App\Services\CustomService')
|
|
|
|
|
+
|
|
|
|
|
+@section('title', 'Custom title for hello page')
|
|
|
|
|
+
|
|
|
|
|
+@push('css')
|
|
|
<style type="text/css">
|
|
<style type="text/css">
|
|
|
.vip {
|
|
.vip {
|
|
|
color: red;
|
|
color: red;
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|
|
|
-</head>
|
|
|
|
|
-<body>
|
|
|
|
|
|
|
+@endpush
|
|
|
|
|
|
|
|
- @include('partials.header')
|
|
|
|
|
|
|
+@section('content')
|
|
|
|
|
+
|
|
|
|
|
+ {{ $custom->getSmthUsefull() }}
|
|
|
|
|
|
|
|
<h1>Hello</h1>
|
|
<h1>Hello</h1>
|
|
|
|
|
|
|
@@ -24,8 +26,4 @@
|
|
|
</li>
|
|
</li>
|
|
|
@endforeach
|
|
@endforeach
|
|
|
</ul>
|
|
</ul>
|
|
|
-
|
|
|
|
|
- @include('partials.footer')
|
|
|
|
|
-
|
|
|
|
|
-</body>
|
|
|
|
|
-</html>
|
|
|
|
|
|
|
+@endsection
|