@extends('admin.layouts.app') @section('title', 'Manajemen Taaruf') @section('content')

Manajemen Profil Taaruf

Statistik

Filter

Reset
@forelse ($profiles as $profile) @empty @endforelse
Nama Jenis Kelamin Usia Pekerjaan Status Proses Taaruf Aksi
@if ($profile->photo_url)
{{ $profile->full_name }}
@else
@endif
{{ $profile->full_name }}
{{ $profile->user->email }}
{{ $profile->gender === 'male' ? 'Laki-laki' : 'Perempuan' }} {{ $profile->birth_place_date }} {{ $profile->occupation }} {{ $profile->is_active ? 'Aktif' : 'Tidak Aktif' }} {{ $profile->is_in_taaruf_process ? 'Sedang Proses' : 'Tidak Dalam Proses' }}
@csrf @method('PATCH')
@csrf @method('DELETE')
Tidak ada profil taaruf yang ditemukan.
{{ $profiles->links() }}
@endsection