@if(session('error'))
{{ session('error') }}
@endif
@if(session('success'))
{{ session('success') }}
@endif
List Component
Add Component
| No |
Component Name |
Description |
Action |
@foreach ($equipments as $index => $equipment)
| {{ $index + 1 }} |
{{ $equipment->name }} |
{{ $equipment->description ?? 'No description' }} |
|
@endforeach
| No |
Primary Name |
Description |
Action |
@foreach ($components as $index => $component)
| {{ $index + 1 }} |
{{ $component->name }} |
{{ $component->description ?? 'No description' }} |
|
@endforeach
List Sub-Primary
Add Sub-Primary
| No |
Sub-Primary Name |
Description |
Action |
@foreach ($subComponents as $index => $subComponent)
| {{ $index + 1 }} |
{{ $subComponent->name }} |
{{ $subComponent->description ?? 'No description' }} |
|
@endforeach
List Secondary
Add Secondary
| No |
Secondary Name |
Description |
Action |
@foreach ($parts as $index => $part)
| {{ $index + 1 }} |
{{ $part->name }} |
{{ $part->description ?? 'No description' }} |
|
@endforeach