@extends('garage.layouts.app') @section('title', 'Part Manufacturers') @push('styles') @include('shared.garage-summary-ui-styles') @endpush @section('content')

Part Manufacturers

Manufacturers are used in Parts add/edit screens.

Add manufacturer
{{ (int)($stats['total'] ?? 0) }}
Total Manufacturers
{{ (int)($stats['active'] ?? 0) }}
Active
{{ (int)($stats['inactive'] ?? 0) }}
Inactive
{{ (int)($stats['linked_parts'] ?? 0) }}
Linked Parts
@if(($search ?? '') || ($status ?? 'all') !== 'all') @endif
@forelse($manufacturers as $m) @empty @endforelse
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
@csrf @method('DELETE')
No manufacturers found.
@if($manufacturers->hasPages())
{{ $manufacturers->links() }}
@endif
@endsection