@extends('bootstrap.layouts.app') @section('content')
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif
@csrf @method('POST')
@error('subject') @enderror
@error('message') @enderror
@if (!empty($tickets)) @foreach ($tickets as $ticket) @endforeach @endif
ID Subject Status Last update
{{ $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 @section('script') @endsection