@extends('layouts.app') @section('title', 'Locations') @section('header_title', 'Branch Locations') @section('content')

Manage Locations

@hasrole('Super Admin') Add New Location @endhasrole
@if(session('success'))
{{ session('success') }}
@endif
@hasrole('Super Admin') @endhasrole @foreach($locations as $location) @hasrole('Super Admin') @endhasrole @endforeach
Branch Name City State StatusActions
{{ $location->name }} {{ $location->city }} {{ $location->state }} @if($location->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
@endsection