WMS Introduction
Overview and installation of the Obelaw Warehouse Management System.
Obelaw WMS
Obelaw WMS is a comprehensive inventory management solution designed to handle complex logistics operations. It provides distinct services for managing locations and stock levels.
Installation
Install the package via composer:
composer require obelaw/wms
Run migrations to set up the schema:
php artisan migrate
Core Architecture
The module is accessed via the WMS facade, which provides entry points to two main service domains:
- Locations: Managing the physical structure of warehouses, zones, and bins.
- Stocks: Managing the quantitative inventory of items within those locations.
use Obelaw\Wms\Facades\WMS;
// Access Location Service
WMS::locations();
// Access Stock Service
WMS::stocks();