@extends('layouts.app') @section('title', __('Kanban Boards')) @section('content_class', 'content-full') @section('body_class', 'footer-hide') @section('body_attrs')@parent data-mailbox_id="{{ $mailbox_id }}" data-board_id="{{ $board_id }}"@endsection @section('content')
@if ($mailbox_id) {{ __('Kanban View') }} @elseif ($board_id) {{ __('Kanban Board') }} @else {{ __('Kanban') }} @endif
@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