-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.blade.php
More file actions
52 lines (45 loc) · 784 Bytes
/
Copy pathlayout.blade.php
File metadata and controls
52 lines (45 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>@yield('titile')</title>
<style type="text/css">
.header{
text-align: center;
background: #333;
width: 100%;
padding: 10px 0;
color: #fff;
top: 0;
}
.footer{
text-align: center;
background: #333;
padding: 50px;
width: 100%;
bottom: 0;
}
.content{
left: 500px;
text-align: center;
padding: 20px;
height: 500px;
width: 70%;
}
</style>
</head>
<body>
@section('header')
<div class="header">
<h1>Students Details </h1>
</div>
@show
<div class="content">
@yield('content')
</div>
@section('footer')
<div class="footer">
<h2>Student details</h2>
</div>
@show
</body>
</html>