PHPackages                             dewakoding/filament-dewakoding - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. dewakoding/filament-dewakoding

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

dewakoding/filament-dewakoding
==============================

A collection of custom components for Laravel Filament 4

0.0.2-alpha(8mo ago)69MITJavaScript

Since Oct 12Pushed 8mo agoCompare

[ Source](https://github.com/SeptiawanAjiP/filament-dewakoding)[ Packagist](https://packagist.org/packages/dewakoding/filament-dewakoding)[ RSS](/packages/dewakoding-filament-dewakoding/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (2)Versions (3)Used By (0)

Filament Dewakoding Package
===========================

[](#filament-dewakoding-package)

[![image](https://raw.githubusercontent.com/SeptiawanAjiP/filament-dewakoding/refs/heads/main/img.png)](https://raw.githubusercontent.com/SeptiawanAjiP/filament-dewakoding/refs/heads/main/img.png)

Collection of custom components for Laravel Filament v4.

Installation
------------

[](#installation)

1. Add the package to your Laravel project:

```
composer require dewakoding/filament-dewakoding:0.0.2-alpha
```

Components
----------

[](#components)

### DewakodingFormSignature

[](#dewakodingformsignature)

A signature pad component that allows users to draw signatures with mouse or touch input.

#### Basic Usage

[](#basic-usage)

```
use Dewakoding\FilamentDewakoding\Forms\Components\DewakodingFormSignature;

DewakodingFormSignature::make('signature')
    ->label('Signature')
    ->required()
```

#### Advanced Usage with Image Storage

[](#advanced-usage-with-image-storage)

```
DewakodingFormSignature::make('signature')
    ->label('User Signature')
    ->penColor('#000000')
    ->width(600)
    ->height(250)
    ->clearButtonLabel('Clear Signature')
    ->saveAsImageColumn('signature_image') // Save as image to this column
    ->disk('public') // Storage disk
    ->directory('signatures') // Storage directory
    ->filename(fn($record) => 'user_' . $record?->id . '_signature_' . time() . '.png')
    ->required()
```

#### Available Methods

[](#available-methods)

- `penColor(string $color)` - Set pen color (default: '#000000')
- `width(int $width)` - Set canvas width (default: 500)
- `height(int $height)` - Set canvas height (default: 200)
- `clearButtonLabel(string $label)` - Set clear button text (default: 'Clear')
- `showClearButton(bool $show)` - Show/hide clear button (default: true)
- `saveAsImageColumn(string $column)` - Save signature as image to specified column
- `disk(string $disk)` - Set storage disk (default: 'public')
- `directory(string $directory)` - Set storage directory (default: 'signatures')
- `filename(string|Closure $filename)` - Set custom filename

#### Using with Livewire

[](#using-with-livewire)

To enable image saving functionality, add the trait to your Filament Resource:

```
use Dewakoding\FilamentDewakoding\Concerns\HasSignatureImage;

class UserResource extends Resource
{
    use HasSignatureImage;

    // ... rest of your resource
}
```

### DewakodingFormStarRating

[](#dewakodingformstarrating)

A star rating component that allows users to rate items with interactive stars and hover effects.

#### Basic Usage

[](#basic-usage-1)

```
use Dewakoding\FilamentDewakoding\Forms\Components\DewakodingFormStarRating;

DewakodingFormStarRating::make('rating')
    ->label('Product Rating')
    ->required()
```

#### Advanced Usage

[](#advanced-usage)

```
DewakodingFormStarRating::make('rating')
    ->label('Product Rating')
    ->maxStars(10) // Number of stars (default: 5)
    ->color('#fbbf24') // Filled star color (default: #fbbf24)
    ->emptyColor('#d1d5db') // Empty star color (default: #d1d5db)
    ->required()
```

#### Available Methods

[](#available-methods-1)

- `maxStars(int $maxStars)` - Set maximum number of stars (default: 5)
- `color(string $color)` - Set filled star color (default: '#fbbf24')
- `emptyColor(string $color)` - Set empty star color (default: '#d1d5db')

Requirements
------------

[](#requirements)

- Laravel 12+
- Filament 4+
- PHP 8.2+

License
-------

[](#license)

MIT License

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance59

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

264d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c4fc0f98b6f82da45e2d040a3db6fdee8fa337185e0afb788e93c04bc6a34249?d=identicon)[septiawanajipradana](/maintainers/septiawanajipradana)

---

Top Contributors

[![SeptiawanAjiP](https://avatars.githubusercontent.com/u/15824117?v=4)](https://github.com/SeptiawanAjiP "SeptiawanAjiP (11 commits)")

### Embed Badge

![Health badge](/badges/dewakoding-filament-dewakoding/health.svg)

```
[![Health](https://phpackages.com/badges/dewakoding-filament-dewakoding/health.svg)](https://phpackages.com/packages/dewakoding-filament-dewakoding)
```

###  Alternatives

[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

94135.4k5](/packages/marcelweidum-filament-expiration-notice)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
