{{-- resources/views/components/printable-table.blade.php --}} @props([ 'data' => [], 'headers' => [], 'title' => 'Data Report', 'showActions' => true, 'actionButtons' => null, 'organization' => 'Organization Name' ])
| {{ $header }} | @endforeach @if($showActions && $actionButtons)Actions | @endif
|---|---|
| @if(is_array($value)) {{ implode(', ', $value) }} @elseif($value instanceof \Carbon\Carbon) {{ $value->format('d/m/Y') }} @elseif(is_bool($value)) {{ $value ? 'Yes' : 'No' }} @else {{ Str::limit($value, 60) }} @endif | @endif @endforeach @if($showActions && $actionButtons)
{!! $actionButtons($row, $index) !!}
|
@endif
No data found.