@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Welcome, {{ auth()->user()->name }}!

Your Recent Tickets

@if($tickets->count() > 0)
@foreach($tickets as $ticket)

{{ $ticket->subject }}

{{ ucfirst($ticket->status) }}

{{ Str::limit($ticket->description, 100) }}

Priority: {{ ucfirst($ticket->priority) }} Created: {{ $ticket->created_at->format('M d, Y') }}
@endforeach
@else

You don't have any tickets yet. Create your first ticket

@endif
@endsection