@php
if ($item->approval_status == null || $item->approval_status === 1) {
if ($item->status == '1') {
$status = 'Aktif';
$color = 'bg-green-500';
} else {
$status = 'Pasif';
$color = 'bg-red-500';
}
} else {
if ($item->approval_status == '2') {
$status = 'Onay Bekleniyor';
$color = 'bg-orange-500';
} elseif ($item->approval_status == '1' && $item->status == '1') {
$status = 'Aktif';
$color = 'bg-green-500';
} else {
$status = 'Reddedildi';
$color = 'bg-red-500';
}
}
@endphp
{{ $status }}
{{-- @if ($item->user)
@endif --}}
{{-- @if ($item->iframe)
@include('components.iframe')
@endif --}}
{{--
Şubeler
--}}
{{-- {{ route('root.headOfficeDetail', [$item->id]) }}#section_1 --}}
@if ($item->approval_status != '0')
@php
$departments = $item->user->departments;
@endphp
@if (count($departments) > 0)
Departmanlar
@endif
Düzenle
@endif
{{--
--}}