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(7mo ago)69MITJavaScript

Since Oct 12Pushed 7mo 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 1mo ago

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

27

—

LowBetter than 49% of packages

Maintenance64

Regular maintenance activity

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity22

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

218d 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

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[datlechin/filament-menu-builder

Create and manage menus and menu items

13550.3k2](/packages/datlechin-filament-menu-builder)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)[swisnl/filament-backgrounds

Beautiful backgrounds for Filament auth pages

54149.2k6](/packages/swisnl-filament-backgrounds)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[codewithdennis/filament-lucide-icons

A Filament plugin that integrates Lucide icons, allowing you to use them seamlessly across Filament forms, tables, actions, and more.

4529.4k2](/packages/codewithdennis-filament-lucide-icons)

PHPackages © 2026

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