@extends('layouts.app') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif

Tickets

@if (!empty($tickets)) @foreach ($tickets as $ticket) @endforeach @endif
# Subject Status Updated Date
{{ $ticket->ticket_id }} {{ $ticket->subject }} {{ $ticket->status }} {{ $ticket->lastupdate_time }}
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif
@endsection