@extends('layouts.app') @section('title') End Comment Settings @endsection @section('content')
End Comments Configuration
@if (session('success')) @elseif(session('error')) @endif
Add End Comment
@csrf
@error('lower_bound') {{ $message }} @enderror
@error('upper_bound') {{ $message }} @enderror
@error('comment') {{ $message }} @enderror
End Comments
@foreach ($end_comments as $comment) @endforeach
# Program Lower Bound Upper Bound Comment Action
{{ $loop->index + 1 }} {{ $comment->program_name }} {{ $comment->lower_bound }} {{ $comment->upper_bound }} {{ ucfirst($comment->comment) }}
@csrf @method('DELETE')
@endsection