@extends('layouts.admin') @section('title', 'Company Contact') @section('content_header')

Company Contact

@stop @section('content')
@if ($message = Session::get('success'))
Sukses! {{ $message }}
@endif

Daftar Company Contact

@if ($companyContacts->count() > 0) @foreach ($companyContacts as $key => $cc) @endforeach
NoNama PerusahaanEmailPhoneAlamatAksi
{{ ($companyContacts->currentPage()-1)*$companyContacts->perPage()+$key+1 }} {{ $cc->company_name }} {{ $cc->email ?? '-' }} {{ $cc->phone ?? '-' }}
{{ $cc->whatsapp ?? '' }}
{{ Str::limit($cc->address, 40, '...') }}
@csrf @method('DELETE')
{{ $companyContacts->render() }}
@else
Belum ada data.
@endif
@stop @section('css') @stop