Browse Source
Update resources/views/outlets/show.blade.php
Co-Authored-By: Nafies Luthfi <nafiesl@gmail.com>
pull/5/head
Milad Shahi
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
resources/views/outlets/show.blade.php
|
|
@ -21,7 +21,7 @@ |
|
|
@can('update', $outlet) |
|
|
@can('update', $outlet) |
|
|
<a href="{{ route('outlets.edit', $outlet) }}" id="edit-outlet-{{ $outlet->id }}" class="btn btn-warning">{{ __('outlet.edit') }}</a> |
|
|
<a href="{{ route('outlets.edit', $outlet) }}" id="edit-outlet-{{ $outlet->id }}" class="btn btn-warning">{{ __('outlet.edit') }}</a> |
|
|
@endcan |
|
|
@endcan |
|
|
@if(\Illuminate\Support\Facades\Auth::check()) |
|
|
|
|
|
|
|
|
@if(auth()->check()) |
|
|
<a href="{{ route('outlets.index') }}" class="btn btn-link">{{ __('outlet.back_to_index') }}</a> |
|
|
<a href="{{ route('outlets.index') }}" class="btn btn-link">{{ __('outlet.back_to_index') }}</a> |
|
|
@else |
|
|
@else |
|
|
<a href="{{ route('outlet_map.index') }}" class="btn btn-link">{{ __('outlet.back_to_index') }}</a> |
|
|
<a href="{{ route('outlet_map.index') }}" class="btn btn-link">{{ __('outlet.back_to_index') }}</a> |
|
|
|