Components\ReportBuilder\Controllers\Backend\ReportBuilderController::download PHP Method

download() public method

Download the report builder
public download ( $id )
$id
    public function download($id)
    {
        Session::forget('download_file');
        $report = BuiltReport::findOrFail($id);
        $zip_file = $this->getReportGenerator($report->toArray());
        return Response::download($zip_file);
    }