diff options
| author | grothedev <grothedev@gmail.com> | 2026-03-06 11:24:29 -0600 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2026-03-06 11:24:29 -0600 |
| commit | d0304c13cbd5671c8020a142ec8c504d8a29b63c (patch) | |
| tree | 64671d71b4164a29b36beeac1942895d9968e36f /app/Http/Controllers/QuoteController.php | |
| parent | 11e296dc247d2f7d15fe677c0b1b3be659cc135d (diff) | |
improvements
Diffstat (limited to 'app/Http/Controllers/QuoteController.php')
| -rw-r--r-- | app/Http/Controllers/QuoteController.php | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/app/Http/Controllers/QuoteController.php b/app/Http/Controllers/QuoteController.php deleted file mode 100644 index 0803937..0000000 --- a/app/Http/Controllers/QuoteController.php +++ /dev/null @@ -1,68 +0,0 @@ -<?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) - { - // - } -} |
