X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/platform/plugins/location/src/Forms
home
/
gfecatvj
/
sites
/
realesbar
/
platform
/
plugins
/
location
/
src
/
Forms
/
📁
..
📄
CityForm.php
(3.31 KB)
📄
CountryForm.php
(2.19 KB)
📁
Fields
📄
StateForm.php
(3.01 KB)
Editing: CountryForm.php
<?php namespace Botble\Location\Forms; use Botble\Base\Forms\FormAbstract; use Botble\Base\Enums\BaseStatusEnum; use Botble\Location\Http\Requests\CountryRequest; use Botble\Location\Models\Country; class CountryForm extends FormAbstract { /** * {@inheritDoc} */ public function buildForm() { $this ->setupModel(new Country) ->setValidatorClass(CountryRequest::class) ->withCustomFields() ->add('name', 'text', [ 'label' => trans('core/base::forms.name'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'placeholder' => trans('core/base::forms.name_placeholder'), 'data-counter' => 120, ], ]) ->add('nationality', 'text', [ 'label' => trans('plugins/location::country.nationality'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'placeholder' => trans('plugins/location::country.nationality'), 'data-counter' => 120, ], ]) ->add('order', 'number', [ 'label' => trans('core/base::forms.order'), 'label_attr' => ['class' => 'control-label'], 'attr' => [ 'placeholder' => trans('core/base::forms.order_by_placeholder'), ], 'default_value' => 0, ]) ->add('is_default', 'onOff', [ 'label' => trans('core/base::forms.is_default'), 'label_attr' => ['class' => 'control-label'], 'default_value' => false, ]) ->add('status', 'customSelect', [ 'label' => trans('core/base::tables.status'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'class' => 'form-control select-full', ], 'choices' => BaseStatusEnum::labels(), ]) ->setBreakFieldPoint('status'); } }
Upload File
Create Folder