App\Http\Controllers\TaxRateController::bulk PHP Method

bulk() public method

public bulk ( )
    public function bulk()
    {
        $action = Input::get('bulk_action');
        $ids = Input::get('bulk_public_id');
        $count = $this->taxRateService->bulk($ids, $action);
        Session::flash('message', trans('texts.archived_tax_rate'));
        return Redirect::to('settings/' . ACCOUNT_TAX_RATES);
    }