57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Shop;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Repositories\Shop\Customers;
|
|
|
|
class CustomerController extends Controller
|
|
{
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Customer $customer
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(Customer $customer)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Customer $customer
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(Customer $customer)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \App\Customer $customer
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(Request $request, Customer $customer)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Customer $customer
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(Customer $customer)
|
|
{
|
|
//
|
|
}
|
|
}
|