PHPackages                             hotash/filastkit - 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. hotash/filastkit

ActiveProject

hotash/filastkit
================

A modern Filament Laravel starter kit with best practices and developer tools.

00[3 PRs](https://github.com/HotashTech/FilastKit/pulls)BladeCI passing

Since Feb 27Pushed 1mo agoCompare

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

READMEChangelogDependenciesVersions (6)Used By (0)

Filament Starter Kit
====================

[](#filament-starter-kit)

A modern Laravel 12+ **Filament** starter kit built with the TALL stack (Tailwind CSS, Alpine.js, Laravel, Livewire) and best practices for rapid application development.

[![Build Status](https://github.com/HotashTech/FilastKit/actions/workflows/tests.yml/badge.svg)](https://github.com/HotashTech/FilastKit/actions)[![Total Downloads](https://camo.githubusercontent.com/c02eaf623a58cb914b88c8a83fb0dfa7b4b0cac07c413b9bcdf6084a206441f7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f686f746173682f66696c6173746b6974)](https://packagist.org/packages/hotash/filastkit)[![Latest Stable Version](https://camo.githubusercontent.com/1cbe5c13a60a74c9dcc23162a28f83fd9b283396bd1ef8cdf8d16eed3207a7e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f686f746173682f66696c6173746b6974)](https://packagist.org/packages/hotash/filastkit)[![License](https://camo.githubusercontent.com/fdf2982b9f5d7489dcf44570e714e3a15fce6253e0cc6b5aa61a075aac2ff71b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d79656c6c6f772e737667)](https://opensource.org/licenses/MIT)

**🚀 Features**- **Laravel 12+** - Latest Laravel framework with modern PHP 8.4+ features
- **Filament** - Admin panel scaffolding (pre-installed)
- **TALL Stack** - Tailwind CSS v4, Alpine.js, Laravel, Livewire
- **Modern Architecture** - Laravel 12 streamlined structure with bootstrap/app.php configuration
- **Testing Ready** - Pest testing framework with comprehensive test setup
- **Code Quality** - Laravel Pint for code formatting, PHPStan for static analysis
- **Development Tools** - Vite for asset compilation, comprehensive development workflow
- **CI/CD Ready** - GitHub Actions with unified workflows and matrix strategies

**🛠️ Tech Stack**- **Backend**: Laravel 12+, PHP 8.4+
- **Admin Panel**: Filament
- **Frontend**: Tailwind CSS v4, Alpine.js, Livewire
- **Testing**: Pest PHP
- **Code Quality**: Laravel Pint, PHPStan
- **Build Tool**: Vite
- **Database**: MySQL/PostgreSQL/SQLite ready

**📋 Requirements**- PHP 8.4 or higher
- Composer
- Node.js &amp; NPM
- Database (MySQL, PostgreSQL, or SQLite)

**🚀 Quick Start**### 1. Clone the repository

[](#1-clone-the-repository)

```
git clone https://github.com/HotashTech/FilastKit.git
cd FilastKit
```

### 2. Install PHP dependencies

[](#2-install-php-dependencies)

```
composer install
```

### 3. Install Node.js dependencies

[](#3-install-nodejs-dependencies)

```
npm install
```

### 4. Environment setup

[](#4-environment-setup)

```
cp .env.example .env
php artisan key:generate
```

### 5. Configure your database in `.env`

[](#5-configure-your-database-in-env)

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_password
```

### 6. Setup database and seed data

[](#6-setup-database-and-seed-data)

```
composer setup
```

### 7. Build assets

[](#7-build-assets)

```
npm run build
```

### 8. Start development server

[](#8-start-development-server)

```
php artisan serve
```

**🎨 Development Workflow**### Available Composer Scripts

[](#available-composer-scripts)

```
# Setup database (migrate fresh + seed)
composer setup

# Testing
composer test:fix       # Run tests with fixes and improvements
composer test:all       # Run all tests (linting, analysis, coverage, unit, browser)
composer test:quick     # Quick test run
composer test:unit      # Run only unit tests
composer test:browser   # Run browser tests

# Code quality
composer lint:fix       # Fix code formatting
composer lint:test      # Check code formatting
composer analyse        # Static analysis (2GB memory limit)
composer analyse:full   # Static analysis (unlimited memory)
composer analyse:test   # Static analysis with ANSI output

# Development
composer dev            # Start all services (server, queue, logs, vite)
composer queue          # Start queue worker
composer schedule       # Start scheduler
```

**📦 Asset Compilation**```
# Development with hot reload
npm run dev

# Production build
npm run build

# Watch for changes
npm run watch
```

**🔍 Code Quality**```
# Format code and fix linting issues
composer lint:fix

# Check code quality without fixing
composer lint:test

# Run static analysis
composer analyse:test

# Run tests with fixes
composer test:fix
```

**🏗️ Project Structure**```
FilastKit/
├── app/
│   ├── Http/Controllers/     # Application controllers
│   ├── Filament/             # Filament resources, pages, widgets, panels
│   ├── Models/               # Eloquent models
│   ├── Services/             # Business logic services
│   └── Providers/            # Service providers
├── bootstrap/
│   ├── app.php              # Application configuration (Laravel 12+)
│   └── providers.php        # Service providers
├── config/                   # Configuration files
├── database/
│   ├── factories/           # Model factories
│   ├── migrations/          # Database migrations
│   └── seeders/             # Database seeders
├── resources/
│   ├── css/                 # CSS files
│   ├── js/                  # JavaScript files
│   └── views/               # Blade templates
├── routes/
│   ├── web.php              # Web routes
│   └── console.php          # Console commands
└── tests/                   # Pest tests

```

**🧪 Testing**This starter kit uses Pest for testing. Tests are located in the `tests/` directory:

```
# Run all tests with fixes and improvements
composer test:fix

# Run all tests (linting, analysis, coverage, unit, browser)
composer test:all

# Run specific test file
php artisan test tests/Feature/ExampleTest.php

# Run tests with filter
php artisan test --filter=testName

# Quick test run (without fixes)
composer test:quick

# Run only unit tests
composer test:unit

# Run browser tests
composer test:browser
```

**📚 Key Laravel 12+ Features**- **Streamlined Structure**: No more `app/Console/Kernel.php` or `RouteServiceProvider`
- **Bootstrap Configuration**: Configure routing, middleware, and exceptions in `bootstrap/app.php`
- **Auto-registering Commands**: Commands in `app/Console/Commands/` are automatically available
- **Modern PHP Features**: Constructor property promotion, typed properties, and more

**🎯 Best Practices**- Use Form Request classes for validation
- Keep controllers thin with business logic in services
- Use Eloquent relationships over raw queries
- Implement proper error handling and logging
- Follow PSR-12 coding standards
- Write comprehensive tests for all features

**🔧 Configuration**### Laravel Pint

[](#laravel-pint)

Code formatting is configured in `pint.json` and follows PSR-12 standards.

### PHPStan

[](#phpstan)

Static analysis is configured in `phpstan.neon` for code quality assurance.

### Vite

[](#vite)

Frontend build tool configuration in `vite.config.js` for modern asset compilation.

### GitHub Actions

[](#github-actions)

CI/CD workflows are configured with unified setup and matrix strategies:

- **Tests**: Matrix strategy with 4 shards for parallel testing
- **Quality**: Matrix strategy for pint, phpstan, rector, and composer checks
- **Deployment**: Deployment validation and migration checks

**📖 Documentation**- [Laravel Documentation](https://laravel.com/docs)
- [Tailwind CSS v4](https://tailwindcss.com/docs)
- [Alpine.js](https://alpinejs.dev/)
- [Livewire](https://livewire.laravel.com/)
- [Pest PHP](https://pestphp.com/)

**🤝 Contributing**1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

**📄 License**This project is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

**🙏 Acknowledgments**- [Laravel Team](https://laravel.com) for the amazing framework
- [Tailwind CSS](https://tailwindcss.com) for the utility-first CSS framework
- [Alpine.js](https://alpinejs.dev/) for lightweight JavaScript framework
- [Livewire](https://livewire.laravel.com/) for full-stack development
- [Pest PHP](https://pestphp.com/) for elegant testing

---

**Happy coding! 🚀**

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance59

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/29140877ce038cbb10bb3d574c55e80bdef28bdd91ab3cfec49d06c7e11dcb6c?d=identicon)[bdsumon4u](/maintainers/bdsumon4u)

---

Top Contributors

[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (21 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (21 commits)")[![bdsumon4u](https://avatars.githubusercontent.com/u/75123992?v=4)](https://github.com/bdsumon4u "bdsumon4u (8 commits)")

### Embed Badge

![Health badge](/badges/hotash-filastkit/health.svg)

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

PHPackages © 2026

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