@extends('layouts.master')
@section('title')
{{ __('sentence.All Tests') }}
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (session('success'))
{{ session('success') }}
@endif
ID |
{{ __('sentence.Test Name') }} |
{{ __('sentence.Description') }} |
{{ __('sentence.Actions') }} |
@foreach($tests as $test)
{{ $test->id }} |
{{ $test->test_name }} |
{{ $test->comment }} |
|
@endforeach
@endsection