@extends('adminlte::page') @section('title', 'location-review-details') @section('content_header') @stop @section('content')

Location Review Details

List of Location Review Details

@if (Session::has('error'))

{{ session()->get('error') }}

@elseif (session()->has('success'))
Well done !!!

{{ session()->get('success') }}

@endif
@if(!empty($locations)) @foreach ($locations as $location) @endforeach @endif
Department Name Location Name Location Review Name Visibility Status Actions
{{ $location->department->name ?? 'N/A' }} {{ $location->location->location_name ?? 'N/A' }} {{ $location->review_name }} @if ($location['visibility'] == 1) public @else private @endif @if ($location['status'] == 1) Active @else Inactive @endif
     
Department Name Location Name Location Review Name Visibility Status Actions
@stop @section('js') @include('admin.locationReviewDetails.scripts.index') @stop