diff options
| author | grothedev <grothedev@gmail.com> | 2025-06-22 16:44:48 -0500 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2025-06-22 16:44:48 -0500 |
| commit | 18f7cde415117856b8f8975126e97445d86a7636 (patch) | |
| tree | f84e39a656e740e57043d6d48eb59eaf20d00b7d /app/Http/Controllers/QuoteController.php | |
| parent | d9099ce9f2da696c2f58fb39fdb9ea38c8290945 (diff) | |
added quote model. working on some websocket stuff.
Diffstat (limited to 'app/Http/Controllers/QuoteController.php')
| -rw-r--r-- | app/Http/Controllers/QuoteController.php | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/app/Http/Controllers/QuoteController.php b/app/Http/Controllers/QuoteController.php new file mode 100644 index 0000000..0803937 --- /dev/null +++ b/app/Http/Controllers/QuoteController.php @@ -0,0 +1,68 @@ +<?php + +namespace App\Http\Controllers; + +use App\Http\Requests\StoreQuoteRequest; +use App\Http\Requests\UpdateQuoteRequest; +use App\Models\Quote; + +class QuoteController extends Controller +{ + /** + * Display a listing of the resource. + */ + public function index() + { + // + } + + /** + * Show the form for creating a new resource. + */ + public function create() + { + // + } + + /** + * Store a newly created resource in storage. + */ + public function store(StoreQuoteRequest $request) + { + // + $quote = Quote::create($request->validated()); + + } + + /** + * Display the specified resource. + */ + public function show(Quote $quote) + { + // + } + + /** + * Show the form for editing the specified resource. + */ + public function edit(Quote $quote) + { + // + } + + /** + * Update the specified resource in storage. + */ + public function update(UpdateQuoteRequest $request, Quote $quote) + { + // + } + + /** + * Remove the specified resource from storage. + */ + public function destroy(Quote $quote) + { + // + } +} |
