@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.location') }}: {{ $location->name }} @parent @stop @section('header_right') {{ trans('admin/locations/table.update') }} @stop {{-- Page content --}} @section('content')

{{ trans('general.users') }}

{{ trans('general.id') }} Avatar {{ trans('general.user') }} {{ trans('admin/users/table.title') }} {{ trans('admin/users/table.email') }} {{ trans('admin/users/table.phone') }} {{ trans('admin/users/table.manager') }} {{ trans('general.department') }} {{ trans('table.actions') }}

{{ trans('general.assets') }}

{{ trans('general.id') }} {{ trans('admin/hardware/table.image') }} {{ trans('general.name') }} {{ trans('admin/hardware/form.model') }} {{ trans('admin/hardware/form.tag') }} {{ trans('admin/hardware/form.serial') }} {{ trans('general.category') }} {{ trans('general.purchase_cost') }} Checkin/Checkout {{ trans('table.actions') }}
@if ($location->image!='')
{{ $location->name }}
@endif
    @if ($location->address!='')
  • {{ $location->address }}
  • @endif @if ($location->address2!='')
  • {{ $location->address2 }}
  • @endif @if (($location->city!='') || ($location->state!='') || ($location->zip!=''))
  • {{ $location->city }} {{ $location->state }} {{ $location->zip }}
  • @endif @if (($location->manager))
  • {{ trans('admin/users/table.manager') }}: {!! $location->manager->present()->nameUrl() !!}
  • @endif @if (($location->parent))
  • {{ trans('admin/locations/table.parent') }}: {!! $location->parent->present()->nameUrl() !!}
  • @endif
@if (($location->state!='') && ($location->country!='') && (config('services.google.maps_api_key')))
Map
@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table', ['exportFile' => 'locations-export', 'search' => true]) @stop