jeffersongoncalves/filament-erp-manufacturing

Filament v5 panel resources for the Laravel ERP manufacturing module — BOMs, work orders and job cards.

Maintainers

Package info

github.com/jeffersongoncalves/filament-erp-manufacturing

pkg:composer/jeffersongoncalves/filament-erp-manufacturing

Statistics

Installs: 5

Dependents: 1

Suggesters: 0

Stars: 1

Open Issues: 0

3.x-dev 2026-06-28 02:09 UTC

This package is auto-updated.

Last update: 2026-06-28 02:10:20 UTC


README

Filament v5 panel resources for the Laravel ERP manufacturing module — BOMs, work orders and job cards.

This package is the UI layer for the jeffersongoncalves/laravel-erp-manufacturing domain package (namespace JeffersonGoncalves\Erp\Manufacturing\). It mirrors the reference jeffersongoncalves/filament-erp-stock package.

Installation

composer require jeffersongoncalves/filament-erp-manufacturing

TODO (temporary): Until the domain packages are published on Packagist, the dependency chain is resolved from local path repositories declared in composer.json. Path repos are not transitive, so the manufacturing, stock, accounting and core packages are all listed. Remove the repositories entry once the domain packages are available on Packagist.

Usage

Register the plugin on a Filament panel:

use JeffersonGoncalves\FilamentErp\Manufacturing\FilamentErpManufacturingPlugin;

$panel->plugin(
    FilamentErpManufacturingPlugin::make()
        ->navigationGroup('ERP — Manufacturing'),
);

Resources

Resource Purpose
WorkstationResource Workstations (hour rate, production capacity)
OperationResource Operations (workstation)
BomResource Bills of materials (+ Items RM, Operations RM, computed costs)
RoutingResource Routings (+ Operations RM)
WorkOrderResource Work orders (+ Required Items RM, Submit/Cancel, Manufacture)
JobCardResource Job cards (+ Time Logs RM, Submit/Cancel)

Transaction resources (work orders, job cards) expose Submit and Cancel record actions that drive the domain document lifecycle. A submitted work order also exposes a Manufacture action: it collects the WIP (source) and FG (target) warehouses and builds the cross-module Manufacture stock entry that consumes the raw materials and produces the finished good.

Widgets

Widget Purpose
WorkOrderStatsWidget Count and quantity of open/submitted work orders

Testing

composer test