X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/platform/plugins/location/src/Forms
home
/
gfecatvj
/
sites
/
restate
/
platform
/
plugins
/
location
/
src
/
Forms
/
📁
..
📄
CityForm.php
(3.31 KB)
📄
CountryForm.php
(2.19 KB)
📁
Fields
📄
StateForm.php
(3.01 KB)
Editing: CityForm.php
<?php namespace Botble\Location\Forms; use Botble\Base\Forms\FormAbstract; use Botble\Base\Enums\BaseStatusEnum; use Botble\Location\Http\Requests\CityRequest; use Botble\Location\Models\City; use Botble\Location\Repositories\Interfaces\CountryInterface; class CityForm extends FormAbstract { /** * @var CountryInterface */ protected $countryRepository; /** * CityForm constructor. * @param CountryInterface $countryRepository */ public function __construct(CountryInterface $countryRepository) { parent::__construct(); $this->countryRepository = $countryRepository; } /** * {@inheritDoc} */ public function buildForm() { $countries = $this->countryRepository->pluck('countries.name', 'countries.id'); $this ->setupModel(new City) ->setValidatorClass(CityRequest::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('state_id', 'autocomplete', [ 'label' => trans('plugins/location::city.state'), 'label_attr' => ['class' => 'control-label'], 'attr' => [ 'id' => 'state_id', 'data-url' => route('state.list'), ], 'choices' => $this->getModel()->state_id ? [ $this->model->state->id => $this->model->state->name, ] : [0 => trans('plugins/location::city.select_state')], ]) ->add('country_id', 'customSelect', [ 'label' => trans('plugins/location::city.country'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'class' => 'form-control select-search-full', ], 'choices' => [0 => trans('plugins/location::city.select_country')] + $countries, ]) ->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