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

index() public method

Display a listing of the created report builders.
public index ( )
    public function index()
    {
        $report_builders = BuiltReport::all();
        $this->layout->title = trans('cms.report_builders');
        $this->layout->content = View::make('report_builders::index')->with('report_builders', $report_builders);
    }