@extends('layouts.app') @section('title', 'Senarai Perunding') @section('heading', 'Perunding') @section('page-title', 'Senarai Perunding') @section('actions') @can('create', App\Models\Consultant::class) Daftar Perunding @endcan @endsection @section('content')
@forelse ($consultants as $c) @empty @endforelse
Nama PerundingNo. PendaftaranEmelPusat DataStatus
{{ $c->nama_perunding }} {{ $c->no_pendaftaran_syarikat ?: '—' }} {{ $c->emel ?: '—' }} {{ $c->data_centres_count }} {{ $c->aktif ? 'Aktif' : 'Tidak Aktif' }}
Tiada perunding dijumpai.
{{ $consultants->links() }}
@endsection