@foreach($columns as $column)
@if($column)
{{$column}} |
@endif
@endforeach
@foreach($rows as $row)
@foreach($row as $key => $row)
@if($key == 'id')
{{$row}} |
@elseif($key == 'start_time')
{{$row}} |
@elseif($key == 'end_user_id')
{{$row}} |
@else
{{$row}} |
@endif
@endforeach
@endforeach