rename models and associates, isolate botanic with shop
This commit is contained in:
88
app/Http/Controllers/Shop/Admin/ArticlePriceController.php
Normal file
88
app/Http/Controllers/Shop/Admin/ArticlePriceController.php
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Shop\Admin;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
use App\Models\Shop\ArticlePrice;
|
||||
use App\Repositories\Shop\ArticlePrices;
|
||||
|
||||
class ArticlePriceController 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\ArticlePrice $ArticlePrice
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function show(ArticlePrice $ArticlePrice)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*
|
||||
* @param \App\ArticlePrice $ArticlePrice
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function edit(ArticlePrice $ArticlePrice)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \App\ArticlePrice $ArticlePrice
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function update(Request $request, ArticlePrice $ArticlePrice)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*
|
||||
* @param \App\ArticlePrice $ArticlePrice
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function destroy(ArticlePrice $ArticlePrice)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user