@extends('layouts.app') @section('css') @endsection @section('content')
{{ __('Customers') }} >> {{ $customerData->first_name }} {{ $customerData->last_name }} >> {{ __('Tickets') }}
@include('admin.customer.customer_tab')
@php $fromDate = isset($from) ? $from : ''; $toDate = isset($to) ? $to : ''; $project = isset($allproject) ? $allproject : ''; $department = isset($alldepartment) ? $alldepartment : ''; @endphp @foreach($summary as $counter => $data) @php if ($data->color) { $color = $data->color; } else { $color = '008000'; } @endphp
{{ $data->name }}
{{ $data->total_status }}
@endforeach
{!! $dataTable->table(['class' => 'table table-striped table-hover dt-responsive', 'width' => '100%', 'cellspacing' => '0']) !!}
@include('layouts.includes.message_boxes') @endsection @section('js') {!! $dataTable->scripts() !!} @endsection