@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/suppliers/table.view') }} - {{ $supplier->name }} @parent @stop @section('header_right') {{ trans('admin/suppliers/table.update') }} {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
@if (($supplier->address!='') && ($supplier->state!='') && ($supplier->country!='') && (config('services.google.maps_api_key')))
Map
@endif @if ($supplier->image!='')
{{ $supplier->name }}
@endif
@can('update', \App\Models\Supplier::class) @include ('modals.upload-file', ['item_type' => 'supplier', 'item_id' => $supplier->id]) @endcan @stop @section('moar_scripts') @include ('partials.bootstrap-table', [ 'exportFile' => 'locations-export', 'search' => true ]) @stop