Skip to content

Commit

Permalink
modifying view perros->home.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
AdryDev92 committed Feb 7, 2018
1 parent 6485b38 commit 3f9cd0c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Peluqueria canina') }}</title>
<title>{{ config('app.name', 'Laravel') }}</title>

<!-- Styles -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
Expand All @@ -18,7 +18,7 @@
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="{{ url('/') }}">
{{ config('app.name', 'Peluqueria canina') }}
{{ config('app.name', 'Laravel') }}
</a>

<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
Expand All @@ -29,6 +29,7 @@
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav">

@auth
@if (Auth::guest())
<li class="nav-item"><a href="{{ route('login') }}" class="nav-link">Login</a></li>
<li class="nav-item"><a href="{{ route('register') }}" class="nav-link">Register</a></li>
Expand All @@ -51,6 +52,7 @@
</div>
</li>
@endif
@endauth
</ul>
</div>

Expand Down

0 comments on commit 3f9cd0c

Please sign in to comment.