@extends('layouts.app') @section('title', $viewData["title"]) @section('subtitle', $viewData["subtitle"]) @section('content')
CREATE NEW ANOMALIES COMMENTS
@if($errors->any()) @endif
@csrf
LIST OF ANOMALIES COMMENTS
@foreach ($viewData["all_reasons"] as $reason) @endforeach
# SHORT DESCRIPTION LONG DESCRIPTION USE CASE EDIT DELETE
{{ $reason->get_id() }} {{ $reason->get_reason() }}
@csrf @method('DELETE')
@endsection