@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Location'), ])

{{__('View Location')}}

@can('role_create') @endcan
@if (session('status')) @endif
@if(Gate::check('location_edit') || Gate::check('location_delete')) @endif @foreach ($location as $item) @if(Gate::check('location_edit') || Gate::check('location_delete')) @endif @endforeach
{{__('name')}} {{__('Address')}} {{__('Status')}}{{__('Action')}}
{{$item->name}} {{$item->address}}
{{$item->status=="1"?'Active': 'Inactive'}}
@can('location_edit') @endcan @can('location_delete') @endcan
@endsection