@extends('layouts.dashboard') @section('template_title') My Vtiger Users List @endsection @section('template_fastload_css') @endsection @section('header') My Vtiger Users @endsection @section('breadcrumbs')
  • {{ trans('titles.app') }} chevron_right
  • My Vtiger Users
  • @endsection @section('content') @if (count($tasks) > 0)
    @include('complaints/partials/task-tab', ['tab' => 'all', 'tasks' => $tasks, 'title' => 'All Vtiger Users', 'status' => 'is-active'])
    @include('dialogs.dialog-delete', ['dialogTitle' => 'Confirm Task Deletion', 'dialogSaveBtnText' => 'Delete']) @else @endif @endsection @section('footer_scripts') @if (count($tasks) > 0) @include('scripts.mdl-datatables') @else @include('scripts.mdl-required-input-fix') @endif @endsection