반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- elasticSearch
- Java
- 인민공원
- Blade
- 체당금
- javascript
- 보정명령
- vue
- reactnative
- Python
- 전자소송
- 홈택스
- cartalyst
- 이더리움
- Sentinel
- 당사자표시정정신청서
- Tutorial
- 코로나
- blockchain
- auth
- Laravel
- as후기
- php
- Eclipse
- 소액임금체불
- 사업자계좌
- win32
- Bootstrap
- 개인사업자
- 코로나19
Archives
- Today
- Total
그냥 사는 이야기
Laravel 5.3 Sentinel - Menu 본문
반응형
Layout 구성
Bootstrap에서 Narrow Jumbotron template를 가져와서 layouts/master.blade.php에 만든다.
master.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<title>Authentication</title>
<!-- Bootstrap core CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="/css/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
@include('layouts.top-menu')
@yield('content')
</div> <!-- /container -->
</body>
</html>
top.menu.php
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation"><a href="/login">Login</a></li>
<li role="presentation"><a href="/register">Register</a></li>
</ul>
</nav>
<h3 class="text-muted">Authentication with Sentinel</h3>
</div>
login, register blade 수정
이제 layout을 bootstrap로 잡았으니 이를 적용한다.
login.blade.php & register.blade.php
2파일 제거할 때 앞부분 div container까지 제거한다.
@extends('layouts.master')
@section('content')
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel-primary">
...
</div>
@endsection
'Development > Web' 카테고리의 다른 글
Laravel 5.3 Sentinel - Roles (0) | 2020.01.21 |
---|---|
Laravel 5.3 Sentinel - Logout & show content to logged users only (0) | 2020.01.21 |
Laravel 5.3 Sentinel - Login (0) | 2020.01.21 |
Laravel 5.3 Sentinel - Create User (0) | 2020.01.20 |
Laravel 5.3 Sentinel - Registration (0) | 2020.01.20 |
Comments