{{ __('Selected mailbox determines users having access to the board.') }} @if (\Module::isActive('customfields')){{ __('Custom fields from the selected mailbox will be available as filters.') }}@endif

@if ($board->columns) @foreach($board->columns as $column) @if (isset($column['id'])) @include('kanban::partials/board_column_form', ['column_id' => $column['id'], 'column' => $column]) @endif @endforeach @else @include('kanban::partials/board_column_form', ['column_id' => 1]) @endif
+ {{ __('Add') }}
@if ($board->swimlanes) @foreach($board->swimlanes as $swimlane) @if (isset($swimlane['id'])) @include('kanban::partials/board_swimlane_form', ['swimlane_id' => $swimlane['id'], 'swimlane' => $swimlane]) @endif @endforeach @else @include('kanban::partials/board_swimlane_form', ['swimlane_id' => 1, 'swimlane' => ['name' => __('Default')]]) @endif
+ {{ __('Add') }}