Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
app
/
Http
/
Controllers
/
Editing: InsightsReportController.php
<?php namespace App\Http\Controllers; use App\Actions\BuildInsightsReport; use Common\Core\BaseController; class InsightsReportController extends BaseController { public function __construct() { // will authorize based on specified model in "BuildInsightsReport" $this->middleware('auth'); } public function __invoke() { $report = app(BuildInsightsReport::class)->execute( request()->all(), ); return $this->success(['report' => $report]); } }
Save
Cancel