修正客户投诉审核方法缺失
This commit is contained in:
parent
47ca04f18f
commit
2d73dcdb2c
|
@ -105,6 +105,11 @@ class ComplaintController extends WorkflowController
|
||||||
return $this->create();
|
return $this->create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function audit()
|
||||||
|
{
|
||||||
|
return $this->create('audit');
|
||||||
|
}
|
||||||
|
|
||||||
public function show()
|
public function show()
|
||||||
{
|
{
|
||||||
return $this->create('show');
|
return $this->create('show');
|
||||||
|
|
|
@ -6,7 +6,7 @@ use Request;
|
||||||
|
|
||||||
class DemoController extends Controller
|
class DemoController extends Controller
|
||||||
{
|
{
|
||||||
#[Attribute(Attribute::TARGET_FUNCTION)]
|
//#[Attribute(Attribute::TARGET_FUNCTION)]
|
||||||
public function vouch()
|
public function vouch()
|
||||||
{
|
{
|
||||||
return $this->display();
|
return $this->display();
|
||||||
|
|
|
@ -14,8 +14,7 @@
|
||||||
"guzzlehttp/guzzle": "^7.0.1",
|
"guzzlehttp/guzzle": "^7.0.1",
|
||||||
"laravel/framework": "^8.12",
|
"laravel/framework": "^8.12",
|
||||||
"laravel/tinker": "^2.5",
|
"laravel/tinker": "^2.5",
|
||||||
"barryvdh/laravel-ide-helper": "^2.9.0",
|
"barryvdh/laravel-ide-helper": "^2.9.0"
|
||||||
"mitloshuk/laravel-cycle-orm": "^0.0.8"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"facade/ignition": "^2.5",
|
"facade/ignition": "^2.5",
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -175,7 +175,6 @@ return [
|
||||||
// App\Providers\BroadcastServiceProvider::class,
|
// App\Providers\BroadcastServiceProvider::class,
|
||||||
App\Providers\EventServiceProvider::class,
|
App\Providers\EventServiceProvider::class,
|
||||||
App\Providers\RouteServiceProvider::class,
|
App\Providers\RouteServiceProvider::class,
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue