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

Online Ticketing System

Monitor, review, and manage all support tickets efficiently. Keep track of reported issues, update statuses, and ensure smooth resolution of all technical requests.

@if(session('success'))
{{ session('success') }}
@endif
Ticket Management Table

Use this table to view, update, and manage all submitted tickets.

@foreach($tickets as $ticket) @endforeach
ID Subject Level Status View
{{ $ticket->id }} {{ $ticket->subject }} @if(strtoupper($ticket->severity_level) == 'P1') P1 @elseif(strtoupper($ticket->severity_level) == 'P2') P2 @elseif(strtoupper($ticket->severity_level) == 'P3') P3 @elseif($ticket->severity_level == 'OUT') Out Of Service @else {{ strtoupper($ticket->severity_level) }} @endif {{ ucfirst($ticket->status) }}
@endsection @push('plugin-scripts') @endpush @push('custom-scripts') @endpush