- AP-09 Produktbestand inkl. Bewegungshistorie (product_stock_movements, ProductStockService) - AP-10 Rohstoffbestand-Ansicht je Lager (RawMaterialStockController) - AP-11 Bestandsschwellen / Out-of-Stock-Handling fuer Produkte und Shop - AP-12 Ausgang/Ausschuss (stock_disposals, StockDisposalController, InventoryService) - Set-Produkte (product_set_items) inkl. Aufloesung - Produktentwicklung & Hinweise-Verwaltung (Notices) - AP-13 Entwicklungskonzept Shop-Bestandsabzug im Plan dokumentiert - Feature-Tests fuer neue Module + aktualisierter Entwicklungsplan Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
547 B
PHP
21 lines
547 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin\Inventory;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Support\Facades\File;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\View\View;
|
|
|
|
class NoticeController extends Controller
|
|
{
|
|
public function index(): View
|
|
{
|
|
$path = resource_path('docs/hinweise.md');
|
|
$markdown = File::exists($path) ? File::get($path) : __('Noch keine Hinweise hinterlegt.');
|
|
|
|
return view('admin.inventory.notices.index', [
|
|
'content' => Str::markdown($markdown),
|
|
]);
|
|
}
|
|
}
|