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