mirror of
https://github.com/bitinflow/laravel-docker-k8s.git
synced 2026-03-13 13:35:52 +00:00
15 lines
178 B
PHP
Executable File
15 lines
178 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class OrderController extends Controller
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
dd('test');
|
|
}
|
|
}
|