@extends('layouts.app')
@section('title', trans('menu.todo'))
@section('content')
@can('create tasks')
{{trans('forms.lbl_add_new')}}
@endcan
0 {{ trans('forms.lbl_items_selected') }}
@if(request()->user()->hasAnyPermission(['delete-own tasks', 'delete-any tasks']))
{{trans('forms.lbl_delete')}}
@endif
|
{{trans("tables.task_title")}} |
{{-- {{trans("tables.status_title")}} | --}}
{{trans("tables.due_date_title")}} |
{{trans("tables.type_title")}} |
{{trans("tables.assign_to_title")}} |
{{trans("tables.user_title")}} |
{{trans("tables.action_title")}} |
@stop
@section('footer-script')
@stop