@extends('space_portal.layouts.master') @section('title','Creating the third workspace. Join today') @section('header') @include('space_portal.partials.header') @endsection @section('content')

Support Ticket

Back

Ticket#
@if($support_ticket->ticket_number){{$support_ticket->ticket_number}} @else{!! old('ticket_number') !!}@endif
Issue Date
{{Carbon\Carbon::parse($support_ticket->created_at)->format('d-m-Y')}}
Status
@if($support_ticket->open == 1)
Active
@else
Closed
@endif

Category: @if($support_ticket->category_support->title) {{$support_ticket->category_support->title}} @endif

Subject: @if($support_ticket->subject){{$support_ticket->subject}} @else{!! old('subject') !!}@endif

Message: @if($support_ticket->message_from_user){{$support_ticket->message_from_user}} @else{!! old('description') !!}@endif

@foreach($reply as $rep) @if(isset($rep->reply))
#
Reef:
{{Carbon\Carbon::parse($rep->created_at)->format('d-m-Y')}}

{{$rep->reply}}

@endif @if(isset($rep->comment))
#
{{$rep->user['name']}}
{{Carbon\Carbon::parse($rep->created_at)->format('d-m-Y')}}

{{$rep->comment}}

@endif @endforeach

@if($support_ticket->open == 1)
@csrf
Reply

@endif
@endsection