@extends('user.support.layout') @section('title', 'Support Dashboard') @section('content')
| # | Subject | Status | Date |
|---|---|---|---|
| {{ $ticket->st_no }} | {{ Str::limit($ticket->st_subject, 30) }} | @if($ticket->st_status == 'Open') Open @elseif($ticket->st_status == 'In Progress') In Progress @elseif($ticket->st_status == 'Closed') Closed @endif | {{ \Carbon\Carbon::parse($ticket->created_at)->format('d M Y') }} |
| No tickets found | |||