27 lines
461 B
PHP
27 lines
461 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Order\Http\Controllers;
|
||
|
|
||
|
class OrderController
|
||
|
{
|
||
|
/**
|
||
|
* Display a listing of the resource.
|
||
|
*
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
return view('order::index');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Show the specified resource.
|
||
|
*
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function show()
|
||
|
{
|
||
|
return view('order::show');
|
||
|
}
|
||
|
}
|