dinesh / helper
Installs: 1 430
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 2
Open Issues: 0
Requires
- php: >=5.3.0
- illuminate/support: 4.x
This package is auto-updated.
Last update: 2024-11-06 20:09:50 UTC
README
Example to file ajax data
{{ DNS::ajax_fill_dropdown('country_id','state_id',URL::to('ajax/states')) }}
{{ DNS::ajax_fill_dropdown('country_id','state_id',URL::to('ajax/states'),array('statea_id','stateb_id')) }}
{{ DNS::imgBase64("data:image/png", DNS::code128BarCode(123456, 1,'PRODUCT')) }}
{{ DNS::getUniqueFilename() }}
class AjaxController extends BaseController {
public function postStates($param = array()) {
$list = array();
if (Input::get("country_id")) {
$list = State::where("country_id", "=", Input::get("country_id"))->lists("name", "id");
} else if (Input::old("country_id")) {
$list = State::where("country_id", "=", Input::old("country_id"))->lists("name", "id");
} elseif (isset($param['country_id'])) {
$list = State::where("country_id", "=", $param['country_id'])->lists("name", "id");
}
return $list;
}
}
use DNS::getQueryLog() to get query with parameter
Add Captcha
->with('math_captcha', DNS::create_mathas_captcha()); <div class="control-group {{ $errors->has('captcha') ? 'error' : ''}}"> <h3 style="padding-left: 25px;"> <span> {{$math_captcha['first_digit']}} {{$math_captcha['operand']}} {{$math_captcha['second_digit']}} = </span> {{ Form::text('captcha', null,array('class'=>'span1','style'=>'display: inline-block;margin-top: 11px;'))}} (?) </h3> {{ $errors->first('captcha', '<span class="help-inline">:message</span>') }} <!--<p style="padding: 0;margin: 0;color: red;font-size: 13px;font-weight: bolder;">ઉપર ના સરવાળા કે બાદબાકી નું પરિણામ અહિં લખો</p>--> </div> Validator::extend('check_captcha', function($attribute, $value, $parameters) { return DNS::check_captcha($value); });