Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /proc/thread-self/root/home/vapecompany/demo.vapecompany.com.bd/app/Http/Controllers/Backend/ |
Upload File : |
<?php namespace App\Http\Controllers\Backend; use App\Models\PriceHistory; use Illuminate\Http\Request; use App\Http\Controllers\Controller; class PriceHistoryController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { // } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Models\PriceHistory $priceHistory * @return \Illuminate\Http\Response */ public function show(PriceHistory $priceHistory) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\PriceHistory $priceHistory * @return \Illuminate\Http\Response */ public function edit(PriceHistory $priceHistory) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\PriceHistory $priceHistory * @return \Illuminate\Http\Response */ public function update(Request $request, PriceHistory $priceHistory) { // } /** * Remove the specified resource from storage. * * @param \App\Models\PriceHistory $priceHistory * @return \Illuminate\Http\Response */ public function destroy(PriceHistory $priceHistory) { // } }