@extends('layouts.new_theme') @section('content')

{{ __('Webpage Incidents') }}

{{ __('Update Incident') }}

{{ __('Update your incident status here') }}.

@include('common.demo') @include('common.errors')

{{ __('Update Incident') }}

@csrf
@error('page')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror {{ __('Here you need to select the update status of the icident') }}.
{{ __('Not that if you select resolved status, Then the icident status will also change to resolved') }}.
@error('updated_description')
{{ $message }}
@enderror {{ __('Here you should describe the update of the incident') }}.

{{ __('Incident Updates') }}

{{ __('All incident updates are listed here') }}.

{{ __('Incident Updates') }}

@foreach ($incidentDetails as $details) @endforeach
{{ __('Status') }} {{ __('Description') }} {{ __('Updated at') }}
{{ $details->status }} {!! strip_tags($details->description) !!} {{ $details->created_at->diffForHumans() }}
@method('DELETE') @csrf
{{ __('Investigating') }} {!! strip_tags($incident->description) !!} {{ $incident->created_at->diffForHumans() }}

{{ $incidentDetails->appends($request->all())->links("pagination::bootstrap-4") }}
@endsection