qortex / bootstrap
Bootstraps a Qortex web application
Installs: 8 651
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 3
Requires
- php: ^8
- illuminate/support: ^11.31
- qortex/pug-editor: ^0.0.5
- spatie/laravel-html: ^3.11
- yajra/laravel-datatables: ^11.0.0
Requires (Dev)
- orchestra/testbench: ^6|^7
- phpunit/phpunit: ^9
- dev-master
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.9.4
- v1.9.3
- v1.9.2
- v1.9.1
- v1.9.0
- v1.8.2
- v1.7.3
- v1.7.2
- 1.7.1
- v1.7.0
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.6
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3
- v1.2
- v1.1
- v1.0
- v0.0.4
- dev-dependabot/add-v2-config-file
- dev-dependabot/composer/qortex/pug-editor-tw-0.0.3or-tw-0.0.4
- dev-dependabot/composer/phpunit/phpunit-tw-7or-tw-8
This package is auto-updated.
Last update: 2025-01-12 17:36:36 UTC
README
Installs
Use Composer:
$ composer require qortex/bootstrap
Adds commands
$ php artisan make:service {serviceClassName}
Creates a service class for model. Service class contains methods that represent scenarios for creating, reading, updating and deleting models.
$ php artisan qortex:make:model {ModelClassName}
Extends laravel make:model
command empowering it with --service
option. This option makes command to create service class along with model.
Adds Laravel Collective Forms Macros for Bootstrap
cpFilterDatetime
{{ Form::cpFilterDatetime($label, $fieldName, $defaultValue, $fieldValue, $required) }}
cpFilterSelectMultiple
{{ Form::cpFilterSelectMultiple($label, $fieldName, $values, $fieldValue, $attributes) }}
cpFilterSelect
{{ Form::cpFilterSelect($label, $fieldName, $values, $fieldValue, $attributes) }}
cpFormDatetime
{{ Form::cpFormDatetime($label, $fieldName, $defaultValue, $fieldValue, $required) }}
cpFormSelectMultiple
{{ Form::cpFormSelectMultiple($label, $fieldName, $values, $fieldValue, $attributes) }}
cpFormSelect
{{ Form::cpFormSelect($label, $fieldName, $values, $fieldValue, $attributes) }}
cpFormText
{{ Form::cpFormText($label, $fieldName, $defaultValue, $fieldValue, $attributes) }}
cpFormEmail
{{ Form::cpFormEmail($label, $fieldName, $defaultValue, $fieldValue, $attributes) }}
cpFormPhone
{{ Form::cpFormPhone($label, $fieldName, $defaultValue, $fieldValue, $attributes) }}
cpFormPassword
{{ Form::cpFormPassword($label, $fieldName, $fieldValue, $attributes) }}
cpFormTextarea
{{ Form::cpFormTextarea($label, $fieldName, $defaultValue, $fieldValue, $attributes) }}
cpFormCheckbox
{{ Form::cpFormCheckbox($label, $fieldName, $checked, $required, $attributes) }}
cpFormInfo
{{ Form::cpFormInfo($label, $fieldName, $attributes) }}
cpFormButton
{{ Form::cpFormButton($label, $fieldName, $value, $attributes) }}
cpFormDangerButton
{{ Form::cpFormDangerButton($label, $fieldName, $value, $attributes) }}