국가 셀렉트 박스 매크로
Submitted by river -
등록 10 years ago - 수정 10 years ago
국가 셀렉트 박스를 표시하기 위한 Form::macro
// Drop-down to select country
Form::macro('countrySelect', function($name, $selected = 0, $options = [])
{
$countries = [0 => 'Select Country'] + Country::remember(60)->get()->lists('name', 'id');
return Form::select($name, $countries, $selected, $options);
});
// 블레이드 템플릿 파일
{{ Form::countrySelect('country') }}
Stats
-
0 likes
- 4624 views