mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-10-30 17:41:06 -03:00 
			
		
		
		
	Some PHP version or configuration were causing this error. On app.blade.php of local branch, I could use "$usedItems ? :" even if $usedItems were null, but I had to check an "isset" to the production. On HomecController, I had to change the "object" parameter of getUsername to "\Illuminate\Database\Eloquent\Collection" to make it work. I took the chance to just show the number of itens in use if it were greater than 0.
		
			
				
	
	
		
			91 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
 | |
| 
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
|     <!-- CSRF Token -->
 | |
|     <meta name="csrf-token" content="{{ csrf_token() }}">
 | |
| 
 | |
|     <title>{{ config('app.name', 'Laravel') }} {{ isset($usedItems) && $usedItems > 0 ? "(${usedItems})" : '' }}</title>
 | |
| 
 | |
|     <!-- Scripts -->
 | |
|     <script src="{{ asset('js/app.js') }}" defer></script>
 | |
| 
 | |
|     <!-- Fonts -->
 | |
|     <link rel="dns-prefetch" href="https://fonts.gstatic.com">
 | |
|     <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
 | |
| 
 | |
|     <!-- Styles -->
 | |
|     <link href="{{ asset('css/app.css') }}" rel="stylesheet">
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|     <div id="app">
 | |
|         <nav class="navbar navbar-expand-md navbar-light navbar-laravel">
 | |
|             <div class="container">
 | |
|                 <a class="navbar-brand" href="{{ url('/') }}">
 | |
|                     {{ config('app.name', 'Laravel') }}
 | |
|                 </a>
 | |
|                 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
 | |
|                     aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="{{ __('Toggle navigation') }}">
 | |
|                     <span class="navbar-toggler-icon"></span>
 | |
|                 </button>
 | |
| 
 | |
|                 <div class="collapse navbar-collapse" id="navbarSupportedContent">
 | |
|                     <!-- Left Side Of Navbar -->
 | |
|                     <ul class="navbar-nav mr-auto">
 | |
| 
 | |
|                     </ul>
 | |
| 
 | |
|                     <!-- Right Side Of Navbar -->
 | |
|                     <ul class="navbar-nav ml-auto">
 | |
|                         <!-- Authentication Links -->
 | |
|                         @guest
 | |
|                         <li class="nav-item">
 | |
|                             <a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
 | |
|                         </li>
 | |
|                         <li class="nav-item">
 | |
|                             <a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
 | |
|                         </li>
 | |
|                         @else
 | |
|                         <li class="nav-item dropdown">
 | |
|                             <a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown"
 | |
|                                 aria-haspopup="true" aria-expanded="false" v-pre>
 | |
|                                 {{ Auth::user()->name }} <span class="caret"></span>
 | |
|                             </a>
 | |
| 
 | |
|                             <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
 | |
|                                 <a class="dropdown-item" href="{{ route('logout') }}" onclick="event.preventDefault();
 | |
|                                                      document.getElementById('logout-form').submit();">
 | |
|                                     {{ __('Logout') }}
 | |
|                                 </a>
 | |
| 
 | |
|                                 <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
 | |
|                                     @csrf
 | |
|                                 </form>
 | |
|                             </div>
 | |
|                         </li>
 | |
|                         @endguest
 | |
|                     </ul>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </nav>
 | |
| 
 | |
|         @if ($flashMsg = session('primary'))
 | |
|         <div class="alert alert-primary text-center" role="alert">{{ $flashMsg }}</div>
 | |
|         @endif
 | |
|         @if ($flashMsg = session('danger'))
 | |
|         <div class="alert alert-danger text-center" role="alert">{{ $flashMsg }}</div>
 | |
|         @endif
 | |
| 
 | |
|         <main class="py-4 mb-5">
 | |
|             @yield('content')
 | |
|         </main>
 | |
| 
 | |
|         @include('layouts.footer')
 | |
|     </div>
 | |
| </body>
 | |
| 
 | |
| </html> |