@extends('garage.layouts.app') @section('title', 'Parts Categories') @push('styles') @include('shared.garage-summary-ui-styles') @endpush @section('content')
These categories are used in Parts and Services screens.
| Category | Code | Sort | Parts | Services | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $c->name }}
@if($c->description)
{{ \Illuminate\Support\Str::limit($c->description, 80) }}
@endif
|
{{ $c->code ?: '—' }} | {{ (int)($c->sort_order ?? 0) }} | {{ (int)($c->parts_count ?? 0) }} | {{ (int)($c->services_count ?? 0) }} | @if($c->is_active) Active @else Inactive @endif | |
|
No parts categories found.
|
||||||