first upload all files
This commit is contained in:
26
Modules/Order/Http/Controllers/OrderController.php
Normal file
26
Modules/Order/Http/Controllers/OrderController.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user