@extends('layouts/contentNavbarLayout') @section('title', 'Contact Information Management') @section('content')

Contact Information

Manage social media links, contact details, and company information

Add New

{{ $stats['total'] }}

Total

{{ $stats['active'] }}

Active

{{ $stats['inactive'] }}

Inactive

{{ $stats['social_media'] }}

Social Media

{{ $stats['contact'] }}

Contact

{{ $stats['address'] }}

Address
Reset
Contact Information
@csrf
@forelse ($contactInfos as $contactInfo) @empty @endforelse
Type Title Value Icon Status Order Actions
@php $typeClasses = [ 'contact' => 'bg-primary', 'social_media' => 'bg-info', 'address' => 'bg-secondary', 'email' => 'bg-success', 'phone' => 'bg-warning', 'website' => 'bg-dark' ]; @endphp {{ ucfirst(str_replace('_', ' ', $contactInfo->type)) }}
@if($contactInfo->icon) @endif
{{ $contactInfo->title }}
@if($contactInfo->description) {{ Str::limit($contactInfo->description, 50) }} @endif
{{ $contactInfo->value }} @if($contactInfo->icon) @else - @endif @if($contactInfo->is_active) Active @else Inactive @endif {{ $contactInfo->sort_order }}
No contact information found

There are no contact information entries matching your criteria.

Add First Entry
@if($contactInfos->hasPages())
{{ $contactInfos->appends(request()->query())->links() }}
@endif
@endsection @section('page-script') @endsection