Initial Commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="da">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<title>{{ $title ?? 'login'}}</title>
|
||||
<link rel="icon" type="image/png" href="SKPFullLogo.png">
|
||||
<link rel="stylesheet" href={{ asset('css/app.css') }}>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
padding-top: 90px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="">
|
||||
<div class="container-fluid">
|
||||
@if($errors->any())
|
||||
@foreach($errors->all() as $error)
|
||||
<div class="alert alert-danger" role="alert">
|
||||
"{{$error}}"
|
||||
</div>
|
||||
@endforeach
|
||||
@endif
|
||||
@yield('content')
|
||||
</div>
|
||||
@include('Partials.footer')
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,51 @@
|
||||
<!doctype html>
|
||||
<html lang="da">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="csrf-token" content="{{csrf_token()}}">
|
||||
<!-- things with curly brackets and having dollar sign is something that comes from Controller -->
|
||||
<title>{{ $title ?? 'Lagersystem' }}</title>
|
||||
<link rel="icon" type="image/png" href="{{asset('SKPFullLogo.png')}}">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.7.0/css/all.min.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href={{ asset('css/app.css') }}>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@include('Partials.Navbar')
|
||||
@if($errors->any())
|
||||
@foreach($errors->all() as $error)
|
||||
<div class="alert alert-danger" role="alert">
|
||||
"{{$error}}"
|
||||
</div>
|
||||
@endforeach
|
||||
@endif
|
||||
<div class="container-fluid">
|
||||
<div class="col 12 pt-4 pb-4 ">
|
||||
<div class="row pe-3 ps-3 ">
|
||||
<div class="col-6 ps-2" style="background-color: white">
|
||||
<h5 class="text-capitalize">@lang(request()->segment(1))</h5>
|
||||
</div>
|
||||
<div class="col-6 text-end pe-2" style="background-color: white">
|
||||
<h5 class="text-capitalize">@lang(request()->segment(1)) / @lang(request()->segment(2))</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@yield('content')
|
||||
</div>
|
||||
|
||||
@include('partials.footer')
|
||||
<script src="https://code.jquery.com/jquery-1.12.0.min.js" ></script>
|
||||
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js" ></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
|
||||
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
|
||||
crossorigin="anonymous"></script>
|
||||
@yield('scripting')
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
@extends('Layouts.master')
|
||||
|
||||
@section('content')
|
||||
@include('Partials.Pages.show_page')
|
||||
@endsection
|
||||
|
||||
@section('scripting')
|
||||
@endsection
|
||||
Reference in New Issue
Block a user