@extends('layouts.admin') @section('styles') @endsection @section('app')
@foreach ($users as $user) @endforeach
No Nama Lengkap Nama Pengguna Email Barbershop Kontak Role Gaji Pokok Status Tanggal Bekerja Aksi
{{ $loop->iteration }} {{ $user->biography->full_name ?? '-' }} {{ $user->username }} {{ $user->email }} {{ $user->biography->contact_number ?? '-' }} {{ $user->barbershop->name ?? '-' }} {{ $user->role->name ?? '-' }} {{ formatToRupiah($user->base_salary) }} {!! $user->is_active === '1' ? 'Aktif' : 'Tidak Aktif' !!} {{ formatDateIndo($user->entry_date) }}
@endsection @section('afterScripts') @endsection