@extends('layouts.app') @section('title') User Tickets @stop @section('content')

{{$user->name}}


@foreach ($alltickets as $label => $tickets)

{{ucwords($label)}}

@foreach ($tickets as $tick) @endforeach
Title T P Status Project Assignee Notes Created Updated
#{{$tick->id}} {{$tick->subject}} {{$tick->type->name}} {{$tick->importance->name}} {{$tick->status->name}} {{$tick->project->name}} {{$tick->assignee->name}} @if ($tick->notes()->where('hide','0')->count() > 0) {{$tick->notes()->where('hide','0')->count()}} @endif {{date('M jS, Y g:ia',strtotime($tick->created_at))}} {{date('M jS, Y g:ia',strtotime($tick->updated_at))}}
@endforeach @stop