Forms\Components\Section::make()->schema([
Forms\Components\Placeholder::make('created_at')
->label('Created at')
->content(fn (Lead $record): ?string => $record->created_at?->diffForHumans()),
Forms\Components\Placeholder::make('updated_at')
->label('Last modified at')
->content(fn (Lead $record): ?string => $record->updated_at?->diffForHumans()),
// sum of related services
])
Forms\Components\Section::make()->schema([
Forms\Components\Placeholder::make('created_at')
->label('Created at')
->content(fn (Lead $record): ?string => $record->created_at?->diffForHumans()),
Forms\Components\Placeholder::make('updated_at')
->label('Last modified at')
->content(fn (Lead $record): ?string => $record->updated_at?->diffForHumans()),
// sum of related services
])