@foreach ($records as $record)
@foreach ($columns as $key => $column) @continue($column->type != 'button') @continue(($key == 'install' && $record->status) || ($key == 'uninstall' && !$record->status)) {!! $this->makePartial('lists/list_button', ['record' => $record, 'column' => $column]) !!} @endforeach
@foreach ($columns as $key => $column) @continue($column->type == 'button')
{!! $this->getColumnValue($record, $column) !!}
@endforeach
@endforeach