@extends('layouts.app') @section('title') {{ __('messages.dashboard') }} @endsection @section('page_css') @endsection @section('content') @include('flash::message') {{ __('messages.dashboard') }} {{ __('messages.dashboard_menu.user_report') }} @can('manage_users') {{ Form::select('users', $users, Auth::id(), ['id' => 'userId','class'=>'user_filter_dropdown']) }} @endcan @if(getLoggedInUser()->hasRole('Developer')) @forelse($tasks as $task) {{ html_entity_decode($task->title) }} @empty @if(empty($search)) {{ __('messages.task.no_task_available') }} @else {{ __('messages.task.no_task_found') }} @endif @endforelse @endif @can('manage_users') {{ __('messages.dashboard_menu.daily_work_report') }} {{ __('messages.dashboard_menu.open_tasks') }} @if(getLoggedInUser()->hasRole('Admin')) {{ __('messages.dashboard_menu.project_status') }} {{ __('messages.dashboard_menu.invoice_status') }} @endif @endcan @endsection @section('page_js') @endsection @section('scripts') @can('manage_users') @if(getLoggedInUser()->hasRole('Admin')) @endif @endcan @endsection
{{ __('messages.task.no_task_available') }}
{{ __('messages.task.no_task_found') }}