You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
use Illuminate\Foundation\Application;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
|
|
|
|
class OrderProductController extends Controller
|
|
|
|
{
|
|
|
|
public function index(): void {}
|
|
|
|
|
|
|
|
public function create(): Factory|\Illuminate\Contracts\View\View|Application|View
|
|
|
|
{
|
|
|
|
return view('order-products.create');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function store(Request $request): void {}
|
|
|
|
|
|
|
|
public function show($id): void {}
|
|
|
|
|
|
|
|
public function edit($id): void {}
|
|
|
|
|
|
|
|
public function update(Request $request, $id): void {}
|
|
|
|
|
|
|
|
public function destroy($id): void {}
|
|
|
|
}
|