Car-Repairs-Shop/app/Http/Controllers/ServiceOrderController.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

77 lines
1.8 KiB
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\ServiceOrder;
class ServiceOrderController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('service-orders.index');
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
return view('service-orders.create');
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
// This will be handled by Livewire component
return redirect()->route('service-orders.index');
}
/**
* Display the specified resource.
*/
public function show(ServiceOrder $serviceOrder)
{
return view('service-orders.show', compact('serviceOrder'));
}
/**
* Show the form for editing the specified resource.
*/
public function edit(ServiceOrder $serviceOrder)
{
return view('service-orders.edit', compact('serviceOrder'));
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, ServiceOrder $serviceOrder)
{
// This will be handled by Livewire component
return redirect()->route('service-orders.show', $serviceOrder);
}
/**
* Remove the specified resource from storage.
*/
public function destroy(ServiceOrder $serviceOrder)
{
// This will be handled by Livewire component
return redirect()->route('service-orders.index');
}
/**
* Generate invoice for the service order.
*/
public function invoice(ServiceOrder $serviceOrder)
{
return view('service-orders.invoice', compact('serviceOrder'));
}
}