@extends('layouts.app') @section('title') Title: {{ $ticket->title }} @if( $ticket->severity == 'critical')
@elseif( $ticket->severity == 'urgent')
@elseif( $ticket->severity == 'important')
@elseif( $ticket->severity == 'monitor')
@else
@endif {{ strtoupper($ticket->severity) }}
  @if( $ticket->status == 'open')
@elseif( $ticket->status == 'progress')
@elseif( $ticket->status == 'resolved')
@elseif( $ticket->status == 'closed')
@else
@endif {{ strtoupper($ticket->status) }}
@endsection @section('description') @endsection @section('breadcrumb')
  • All Tickets
  • {{ $ticket->ticket_id }}
  • @endsection @section('content')
    @include('tickets.attributes') @include('contacts.attributes', ['contact' => $ticket->node->contact]) @include('tickets.comments')

    Action

    Critical
    Perangkat tidak berfungsi dan data tidak terkirim
    Urgent
    Perangkat berfungsi tapi data tidak terkirim
    Important
    Perangkat berfungsi dan data terkirim tapi terkadang ada permasalahan dalam penggunaan
    Monitor
    Tidak ada follow-up yang harus dilakukan kecuali hanya dimonitor saja
    Informational
    Hanya perlu follow up informasi
    {{ csrf_field() }}
    @include('contacts.maps-individual') @include('tickets.image') @include('tickets.logs')
    @endsection @section('scripts') @include('contacts.scripts.maps-individual', ['contact' => $ticket->node->contact]) @endsection