@extends('admin.layouts.content') @section('content')
@include('components.card_header', ['title' => 'Contacts', 'create_title' => 'Add Contact', 'create' => route('New Contact')])
@forelse($contacts as $contact) @empty @endforelse
# Full Name Mobile Number Group Status Action
{!! $loop->iteration !!} {!! $contact->full_name !!} {!! $contact->number !!} {!! $contact->user_id !!} {!! $contact->is_active ? 'Active' : 'Inactive' !!} @include('components.edit', ['route' => route('Edit Contact', ['id' => $contact->id])])
No record(s) found.

@endsection