@if (session('success'))

{{ session('success') }}

@endif @if ($errors->any()) @endif
@if (!isset($chemicalsR))
@csrf
CSV File:
@csrf
CSV File: Chemical Recommendation
@foreach ($chemicals as $key => $chemical) @endforeach
Id Flammable Name Formula Actions
{{ $key + 1 }} {{ Str::limit($chemical->flammable, 10, '...') }} {{ $chemical->name }} {{ Str::limit($chemical->formula, 10, '...') }} Show
@csrf @method('DELETE')
@else
@foreach ($chemicalsR as $key => $chemical) @endforeach
Id Fire Rated Type Style Actions
{{ $key + 1 }} {{ $chemical->fire_rated }} {{ $chemical->type }} {{ $chemical->style }}
@endif