@extends('layout.master') @push('plugin-styles') @endpush @section('content')

Online Ticketing System

Submit, track, and manage your support requests all in one place. Use the system to report issues, request assistance, and monitor the progress of your tickets.

@if(session('success')) @endif

Create a New Ticket

@csrf

Ticket History

You can also review your past tickets and their status to see how quickly your issues were addressed.

@foreach($tickets as $ticket) @endforeach
Ticket ID Subject Severity Level Status Created At Actions
{{ $ticket->id }} {{ $ticket->subject }} @if($ticket->severity_level == 'P1') P1 @elseif($ticket->severity_level == 'P2') P2 @elseif($ticket->severity_level == 'P3') P3 @elseif($ticket->severity_level == 'OUT') Out Of Service @endif @if($ticket->status == 'solved') Resolved @else In Progress @endif {{ $ticket->created_at->format('d M Y, H:i') }}
@foreach($tickets as $ticket) @endforeach @foreach($tickets as $ticket) @endforeach @endsection @push('plugin-scripts') @endpush @push('custom-scripts') @endpush