Car-Repairs-Shop/app/Http/Controllers/InventoryController.php
sackey e839d40a99
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Initial commit
2025-07-30 17:15:50 +00:00

14 lines
216 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class InventoryController extends Controller
{
public function index()
{
return redirect()->route('inventory.dashboard');
}
}