{!! Form::label('id', 'Id:') !!}

{{ $supportTicket->id }}

{!! Form::label('parent_id', 'Parent Id:') !!}

{{ $supportTicket->parent_id }}

{!! Form::label('title', 'Title:') !!}

{{ $supportTicket->title }}

{!! Form::label('message', 'Message:') !!}

{{ $supportTicket->message }}

{!! Form::label('front_user_id', 'Front User Id:') !!}

{{ $supportTicket->front_user_id }}

{!! Form::label('admin_id', 'Admin Id:') !!}

{{ $supportTicket->admin_id }}

{!! Form::label('status', 'Status:') !!}

{{ $supportTicket->status }}

{!! Form::label('ticket_date', 'Ticket Date:') !!}

{{ $supportTicket->ticket_date }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $supportTicket->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $supportTicket->updated_at }}