I am trying to fit your framework into Laravel + Vue Js (single page app) In Laravel Controller I have this code:
public function index()
{
$report = new DeptReport();
$report->run();
return view("deptreport",["report" => $report]);
}
this is example without ajax call https://beautysalons.site/deptreport
I need to load report via ajax after I pickup date or choose some multyselect value and press 'Load' button.
Is it possible to have two separate views for one report. In one only form with daterange and multyselect widjets, in another PivotTable::create widget
If you have some examples can you pls give me link. I cant find.