@extends('layouts.app') @section('content')
{{-- table category start --}}
{{--
Inventory
--}}
@if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif @if ($errors->any()) @endif
@php $counter = 1; @endphp @foreach ($locations as $location) @endforeach
No. Location Action
{{ $counter++ }} {{ $location->name }} -Edit
{{-- table category end --}} {{-- add category form start --}}
Add New Location
@csrf

{{-- add location form end --}}
@endsection