@extends('layouts.app') @section('styles') @endsection @section('content') @if (session('success'))
✓ Success! {{ session('success') }}
@endif
@if($accessories->count() > 0) @foreach($accessories as $accessory) @endforeach
Name Description Notes Status Actions
{{ $accessory->name }} {{ $accessory->description ? Str::limit($accessory->description, 40) : '-' }} {{ $accessory->notes ? Str::limit($accessory->notes, 35) : '-' }} @if($accessory->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
@else

No accessories found yet.

Create the first one now →
@endif
@endsection