@extends('admin.layouts.main') @section('main-admin-container')

Contact Detail

Create contact-detail
Contact Detail
{{--

Add lightweight datatables to your project with using the Simple DataTables library. Just add .datatable class name to any table you wish to conver to a datatable

--}} @foreach ($contactdetails as $contactdetail) @endforeach
S.No OfficeName 1 OfficeName 2 Email Mobile Status Created At Actions
{{ $loop->iteration }} {{ $contactdetail->office_name_1 }} {{ $contactdetail->office_name_2 }} {{ $contactdetail->email }} {{ $contactdetail->mobile }} {{ $contactdetail->status == 1 ? 'Active' : 'Suspended' }} {{ \Carbon\Carbon::parse($contactdetail->created_at)->format('d-m-Y h:i A') }}
Edit @csrf @method('DELETE')
@endsection