Positions Export Report

Generated on: {{ now()->format('M d, Y H:i') }} | Total Records: {{ count($positions) }}

@foreach($headings as $heading) @endforeach @foreach($positions as $position) @foreach($columns as $column) @if($column === 'status') @elseif($column === 'role.name') @elseif($column === 'created_at' || $column === 'updated_at') @else @endif @endforeach @endforeach
{{ $heading }}
@if($position->trashed()) Deleted @else {{ $position->active ? 'Active' : 'Inactive' }} @endif @if($position->role) {{ $position->role->name }} @else N/A @endif {{ $position->{$column}->format('M d, Y') }}{{ $position->{$column} }}

Generated by {{ auth()->user()->name ?? 'System' }} using {{ config('app.name') }}