Large Employee Form with Sections

Filament 4
Also available in Filament 3 version

This project demonstrates Filament form features including global settings configuration and the utilization of grid and group components to position inputs in various layouts across the form interface.

01J81YCPCXK4TBQPPWSTYBHSHZ

Get the Source Code:

How it works

First, we have set global settings for some inputs and sections. This means we do not need to set an option for every input.

app/Providers/AppServiceProvider.php:

use Filament\Schemas\Components\Section;
use Filament\Forms\Components\Radio;
use Filament\Forms\Components\Select;
use Illuminate\Support\ServiceProvider;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\DatePicker;
 
class AppServiceProvider extends ServiceProvider
{
// ...
 
public function boot(): void
{
TextInput::configureUsing(function (TextInput $textInput) {
$textInput->inlineLabel();
});
 
Radio::configureUsing(function (Radio $radio) {
$radio->inlineLabel();
});
 
Select::configureUsing(function (Select $select) {
$select->inlineLabel();
});
 
DatePicker::configureUsing(function (DatePicker $datePicker) {
$datePicker->inlineLabel();
});
 
Section::configureUsing(function (Section $section) {
$section
->columns()
->compact();
});
}
}

Next, we will go through every section.

The first section, Personal Information, has basic text inputs, a date picker, and a selector. The social security number is a mask that only allows numbers and is divided by a dash. The payroll number is shown as a placeholder and is set to be visible only on the edit page.

The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.
Get the Source Code: All 152 Premium Examples for $99