@extends('layouts.new_theme') @section('content')
{{__('Total number of webpage incidents')}}: {{ $incidents->total() }}
{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.
{{ __('Create new One') }}| {{ __('Webpage') }} | {{ __('Subject') }} | {{ __('Description') }} | {{ __('Status') }} | {{ __('Last update') }} | {{ __('Follow up') }} | |
|---|---|---|---|---|---|---|
| {{ Str::limit($incident->monitors->name, 20) }} | {{ Str::limit($incident->subject, 30) }} | {!! strip_tags(Str::limit($incident->description, 30)) !!} | @if($incident->status == true) {{ __('Resolved') }} @else {{ __('Pending') }} @endif | {{ $incident->updated_at->diffForHumans() }} | {{ __('Follow up') }} | @if (env('APP_ENV') != 'demo') @endif |