PHPackages                             joinapi/filament3 - 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. [Framework](/categories/framework)
4. /
5. joinapi/filament3

ActiveProject[Framework](/categories/framework)

joinapi/filament3
=================

A starter template for building projects with Laravel and FilamentPHP.

v1.0.2(10mo ago)019MITPHPPHP ^8.2

Since Jun 22Pushed 10mo agoCompare

[ Source](https://github.com/joinapi/filament3)[ Packagist](https://packagist.org/packages/joinapi/filament3)[ RSS](/packages/joinapi-filament3/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (16)Versions (4)Used By (0)

Larament / Filament 3
=====================

[](#larament--filament-3)

**Larament** is a time-saving starter kit to quickly launch Laravel projects. It includes **FilamentPHP** pre-installed and configured, along with additional tools and features to streamline your development workflow.

---

Table of Contents
-----------------

[](#table-of-contents)

- [Features](#features)
    - [Security and Testing](#security-and-testing)
    - [Quality of Life](#quality-of-life)
    - [Design](#design)
- [Default User](#default-user)
- [Included Packages](#included-packages)
- [Installation](#installation)
    - [CLI Installation](#cli-installation)

---

Features
--------

[](#features)

### Security and Testing

[](#security-and-testing)

- **PESTPHP**: Preconfigured with test cases for streamlined testing. ([Learn more](https://pestphp.com/docs/installation))
- **Strict mode enabled** via [Should Be Strict](https://laravel-news.com/shouldbestrict):
    - Prevents lazy loading (N+1 queries).
    - Guards against discarding or accessing missing attributes.
- **Production safeguards**: Prevents destructive commands in production. ([Learn more](https://laravel-news.com/prevent-destructive-commands-from-running-in-laravel-11))
- **Architectural testing** with Archtest.
- **Static analysis** using PHPStan.
- **Debugging** with Laravel Debugbar.

### Quality of Life

[](#quality-of-life)

- Custom login page autofills email and password with seeded data for quicker testing.
- Built-in password generator action on the user profile and user resource pages.
- Enhanced global search includes email addresses for better discoverability.
- Auto-translatable component labels.
- `composer review`: A single command to run Pint, PHPStan, and PEST.
- Helper functions available through a dedicated helper file.
- Custom `php artisan make:filament-action` command for generating Filament actions.

### Design

[](#design)

[![User Global Search](https://raw.githubusercontent.com/CodeWithDennis/larament/3.x/resources/images/user-global-search.jpg)](https://raw.githubusercontent.com/CodeWithDennis/larament/3.x/resources/images/user-global-search.jpg)

- Filament Panel's primary color is preset to blue.
- Single Page Application (SPA) mode enabled by default.
- Global search keybinding set to `CTRL + K` or `CMD + K`.
- A ready-to-use FilamentPHP custom theme, including a sidebar separator.
- Enhanced profile page with a built-in password generator.

---

Default User
------------

[](#default-user)

A default user is seeded with the following credentials, pre-filled on the login page for quick access:

```
DEFAULT_USER_NAME="ADMIN"
DEFAULT_USER_EMAIL="admin@joinapi.io"
DEFAULT_USER_PASSWORD="password"
```

Included Packages
-----------------

[](#included-packages)

The following packages are pre-installed:

- [timokoerber/laravel-one-time-operations](https://github.com/TimoKoerber/laravel-one-time-operations)
- [barryvdh/laravel-debugbar](https://github.com/barryvdh/laravel-debugbar)
- [phpstan/phpstan](https://phpstan.org/user-guide/getting-started)
- [pestphp/pest](https://pestphp.com/docs/installation)
    - [pestphp/pest-plugin-faker](https://pestphp.com/docs/plugins#faker)
    - [pestphp/pest-plugin-laravel](https://pestphp.com/docs/plugins#laravel)
    - [pestphp/pest-plugin-livewire](https://pestphp.com/docs/plugins#livewire)

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

[](#installation)

### Using the Template

[](#using-the-template)

- Create a repository using the Larament template.
- Clone your repository to your local machine. Navigate to the project directory and run the following commands:

```
composer install
npm install && npm run build
cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan db:seed
```

### CLI Installation

[](#cli-installation)

Alternatively, you can use the following command to create a new project with Larament:

```
composer create-project --prefer-dist joinapi/filament3 example-app
```

### Create a Terminal Alias

[](#create-a-terminal-alias)

For easier usage in future projects, create an alias in your terminal:

```
alias larament="composer create-project --prefer-dist joinapi/filament3"
```

Now, you can create a new project with a simple command:

```
larament my-cool-app
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance54

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 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 ~8 days

Total

3

Last Release

314d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1e132e0a337287f9820afd3bdfa3fd7d2098d93005ce791111b5dda0941444ca?d=identicon)[joinapi](/maintainers/joinapi)

---

Top Contributors

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

---

Tags

phpframeworklaraveltemplateboilerplatestarterfilamentfilamentphp

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/joinapi-filament3/health.svg)

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

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[raugadh/fila-starter

Laravel Filament Starter.

614.9k](/packages/raugadh-fila-starter)[ercogx/laravel-filament-starter-kit

This is a Filament v3 Starter Kit for Laravel 12, designed to accelerate the development of Filament-powered applications.

401.5k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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