@extends('layouts.superadmin')
@section('title', 'Location Master')
@section('page-title', 'Location Master')
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
| ID |
Name |
Code |
Actions |
@forelse($locations as $location)
| {{ $location->id }} |
{{ $location->name }} |
{{ $location->code }} |
|
@empty
| No locations found. |
@endforelse
@endsection