@extends('admin.layout.app') @section('title') {{ $location->name ?? __('Show') . ' Location' }} @endsection @section('header')

Home - Location Management

@endsection @section('content')
{{ __('Show') }} Location
State Id: {{ $location->state_id }}
City Id: {{ $location->city_id }}
Site Id: {{ $location->site_id }}
Floor Id: {{ $location->floor_id }}
Block Id: {{ $location->block_id }}
Department Id: {{ $location->department_id }}
Name: {{ $location->name }}
Description: {{ $location->description }}
Is Active: {{ $location->is_active }}
@endsection