@extends('garage.layouts.app') @section('title', 'Part Manufacturers') @push('styles') @include('shared.garage-summary-ui-styles') @endpush @section('content')
Manufacturers are used in Parts add/edit screens.
| Manufacturer | Code | Sort | Parts | Status | Actions |
|---|---|---|---|---|---|
|
{{ $m->name }}
@if($m->notes)
{{ \Illuminate\Support\Str::limit($m->notes, 80) }}
@endif
|
{{ $m->code ?: '—' }} | {{ (int)($m->sort_order ?? 0) }} | {{ (int)($m->parts_count ?? 0) }} | @if($m->is_active) Active @else Inactive @endif | |
|
No manufacturers found.
|
|||||