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