Skip to content

Instantly share code, notes, and snippets.

View JosephDebugger's full-sized avatar
🎯
Focusing

Joseph Dias JosephDebugger

🎯
Focusing
View GitHub Profile
@JosephDebugger
JosephDebugger / SaleController.php
Last active July 11, 2025 16:59
// SaleController.php — Part of the Service Management System (Laravel) to sale services or products
<?php
namespace App\Http\Controllers\Admin\Inventory;
use App\Http\Controllers\Controller;
use App\Http\Requests\CheckOutCartRequest;
use Illuminate\Http\Request;
use App\Models\inventory\Category;
use App\Models\inventory\Product;
use App\Models\inventory\Sale;