@extends('resource.show') @php $links['back'] = guard_url('address/address'); $links['edit'] = guard_url('address/address') . '/' . $address->getRouteKey() . '/edit'; @endphp @section('icon') <i class="pe-7s-display2"></i> @stop @section('title') {!! __('address::address.title.main') !!} @stop @section('sub.title') {!! __('address::address.title.show') !!} @stop @section('breadcrumb') <li><a href="{!!guard_url('/')!!}">{{ __('app.home') }}</a></li> <li><a href="{!!guard_url('$address/address')!!}">{!! __('address::address.name') !!}</a></li> <li>{{ __('app.show') }}</li> @stop @section('tabs') @stop @section('tools') <a href="{!!guard_url('$address/address')!!}" rel="tooltip" class="btn btn-white btn-round btn-simple btn-icon pull-right add-new" data-original-title="" title=""> <i class="fa fa-chevron-left"></i> </a> @stop @section('content') @include('address::address.partial.show', ['mode' => 'show']) @stop