@extends('storefront.layout') @section('title', 'Support Tickets - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style')
Support

My support tickets

Report parcel issues and track replies from the admin support team.

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

Tickets

@forelse($tickets as $ticket) {{ $ticket->ticket_number }} {{ $ticket->subject }} {{ str_replace('_', ' ', $ticket->status) }} @empty
No support tickets yet.
@endforelse
{{ $tickets->links() }}
@endsection