@extends('layouts.app') @section('content')

Headquarter Settings

@if($errors->any())
@endif @if(session('success'))
{{ session('success') }}
@endif
@foreach($contacts as $contact) @endforeach
ID Title Contact No State (1=Active) Type (0=Home, 1=Office) Actions
{{ $contact->id }} {{ $contact->title }} {{ $contact->contact_no }} {{ $contact->state_id }} {{ $contact->type_id }}
@csrf @method('DELETE')
@foreach($locations as $location) @endforeach
ID Location Lat / Lng State (1=Active) Type (0=Home, 1=Office) Actions
{{ $location->id }} {{ $location->location }} {{ $location->latitude }} / {{ $location->longitude }} {{ $location->state_id }} {{ $location->type_id }}
@csrf @method('DELETE')
@foreach($media as $m) @endforeach
ID Title Link State (1=Active) Type (0=FB, 1=IG, 2=TW, 3=LI) Actions
{{ $m->id }} {{ $m->title }} {{ $m->link }} {{ $m->state_id }} {{ $m->type_id }}
@csrf @method('DELETE')
@endsection