@if (!empty($empty_data))
@include('partials/empty', $empty_data ?: ['icon' => 'th', 'empty_text' => __('There are no cards here yet')])
@else
@if (empty($data))
@include('partials/empty', $empty_data ?: ['icon' => 'th', 'empty_text' => __('There are no cards here yet')])
@else
@include('kanban::partials/board')
@endif
@endif
@endsection
@include('partials/editor')
@include('partials/include_datepicker')
@section('javascript')
@parent
knInit("{{ __("Are you sure you want to delete the board?") }}");
var kn_text_delete_card = '{{ __("Are you sure you want to delete the card? The linked conversation will be preserved.") }}';
@endsection