@php // use App\Models\Admin; // // All admins list (for select options) // $allAdmins = Admin::pluck('first_name', 'uuid')->toArray(); // or use 'id' if syncing by id // Selected assignables $selectedAssignables = $scrum_board->assignables->pluck('email', 'uuid')->toArray(); // or 'id' // Selected viewers $selectedViewers = $scrum_board->viewers->pluck('email', 'uuid')->toArray(); // or 'id' @endphp
@if($scrum_board->id)
@else @endif
@csrf @if($scrum_board->id) @method('PUT') @endif

Board Info

This will be the Name and description of your Kanban board. You and other admins can edit the name in future. The name can contain letters, numbers & punctuation.

{{-- Assignable Users --}}
{!! Form::label('assignables[]', 'Assignable Users') !!} {!! Form::select('assignables[]', $selectedAssignables ?? [], @$selectedAssignables ? array_keys($selectedAssignables) : [], [ 'class' => 'form-select', 'data-placeholder' => __('Select assignable users'), 'data-allow-clear' => 'true', 'data-kt-select2' => 'true', 'multiple' => true, 'data-kt-template-result' => "users", 'data-template-selection-ld'=>"formatSelections", 'data-remote' => route('resource-select-user', ['Admin']), 'id' => 'scrum-board-assignables-select' ]) !!}
{{-- Board Viewers --}}
{!! Form::label('viewers[]', 'Board Viewers') !!} {!! Form::select('viewers[]', $selectedViewers ?? [], @$selectedViewers ? array_keys($selectedViewers) : [], [ 'class' => 'form-select', 'data-placeholder' => __('Select board viewers'), 'data-allow-clear' => 'true', 'data-kt-select2' => 'true', 'multiple' => true, 'data-kt-template-result' => "users", 'data-template-selection-ld'=>"formatSelections", 'data-remote' => route('resource-select-user', ['Admin']), 'id' => 'scrum-board-viewers-select' ]) !!}

Board Pipelines

These will be the Columns of your Kanban board. They represent discrete stages in work process. Columns can be Edited, Removed, Rearranged or Added in future.

@php $sort_enabled = $scrum_board->id && !$scrum_board->tasks()->exists(); @endphp @forelse ($scrum_board->pipelines as $pipeline)
0
is_skippable)>

Todo list (0)

{{--
--}}
checkItems) == 0) data-init-empty="true" @endif> @forelse ($pipeline->checkItems as $checkItem)
@empty
@endforelse
Add new task ! Delete task
@empty @endforelse

Your Are Done!

If you need more info, please Sign In.
Writing headlines for blog posts is as much an art as it is a science and probably warrants its own post, but for all advise is with what works for your great & amazing audience.

We need your attention!

To start using great tools, please, Create Team Platform
{{--
--}}