i80586/laravel-form-fields
最新稳定版本:v2.1.2
Composer 安装命令:
composer require i80586/laravel-form-fields
包简介
Laravel form fields generator - for admin panels
README 文档
README
A fluent form field generator for Laravel
🚀 About
laravel-form-fields provides a fluent, expressive API for generating form fields in Laravel.
Version 2 introduces a builder-style syntax, replacing array-based configuration with readable method chaining.
📋 Requirements
- PHP >= 8.3
- Laravel >= 10
📦 Installation
composer require i80586/laravel-form-fields
Basic usage
{!! form()->input('name') !!}
Output:
<label for="name">Name</label> <input type="text" name="name" id="name" class="form-control">
Setting default value:
{!! form()->input('name', 'John') !!}
This will output:
<label for="name">Name</label> <input type="text" name="name" id="name" class="form-control" value="John">
Change the text of the default label
{!! form()->input('name')->label('Your name') !!}
This will output:
<label for="name">Your name</label> <input type="text" name="name" id="name" class="form-control">
Multiple CSS classes
You can pass multiple CSS classes in a single call:
{!! form()
->input('name', 'John')
->label(false)
->required()
->class('form-control', 'name-select')
!!}
or
{!! form()
->input('name', 'John')
->label(false)
->required()
->class(['form-control', 'name-select'])
!!}
This will output:
<input type="text" name="name" id="name" value="John" class="form-control name-select" required>
Select
{!! form()->select('city', 1, [1 => 'Baku'], 'Choose city') !!}
This will output:
<label for="city">City</label> <select name="city" id="city" class="form-select"> <option value>Choose city</option> <option value="1" selected>Baku</option> </select>
Old input support
Form fields automatically use Laravel old() values after validation errors.
You do not need to manually call old(); the previous value will be inserted automatically.
Use the following variant:
{!! form()->input('email', 'some@email.com') !!}
instead of:
❌
{!! form()->input('email', old('email', 'some@email.com')) !!}
Philosophy
-
Fluent API
-
Explicit over magic
-
Laravel-native behavior
-
Clean and predictable HTML output
License
MIT License
统计信息
- 总下载量: 1.16k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-07