Components\ReportBuilder\Controllers\Backend\ReportBuilderController::download PHP Метод

download() публичный Метод

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);
    }