PHPackages                             zacksmash/clean-af - 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. zacksmash/clean-af

ActiveProject[Framework](/categories/framework)

zacksmash/clean-af
==================

The skeleton application for the Laravel framework.

v1.0.2(4mo ago)17422MITVuePHP ^8.2CI passing

Since Aug 18Pushed 4mo agoCompare

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

READMEChangelog (3)Dependencies (13)Versions (5)Used By (0)

clean af 🧼 - A Laravel starter kit that's clean af
==================================================

[](#clean-af----a-laravel-starter-kit-thats-clean-af)

[![Latest Version on Packagist](https://camo.githubusercontent.com/9c07c9dfdfbd08ca1e68d22650b7116c4b6a9fe0086748572208597732c534e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7a61636b736d6173682f636c65616e2d61662e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/zacksmash/clean-af)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c1c98830f872170485366509f2db260616f6b275b135f927acefb79682a1256f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7a61636b736d6173682f636c65616e2d61662f74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/zacksmash/clean-af/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/f8fce414f76e9845b5e85fa1bd3839ace68d0908bc7332cd8f257856656dd0f7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7a61636b736d6173682f636c65616e2d61662f6c696e742e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/zacksmash/clean-af/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/bd81505068a41d6699d84d09b8cb638a707c8291fb96556b1b0017d0e6f6644e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7a61636b736d6173682f636c65616e2d61662e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/zacksmash/clean-af)

- Minimal Tailwind styles, that can be completely removed in the app.css if you want.
- Uses [Laravel Fortify](https://laravel.com/docs/12.x/fortify) to handle authentication, 2FA, etc.
- Uses [Laravel Wayfinder](https://github.com/laravel/wayfinder) for routing
- Intentially bare-bones so you can install whatever frontend you'd like without having to strip out existing components and structures.

Screenshots
-----------

[](#screenshots)

[![Login Screen](https://github.com/zacksmash/assets/raw/main/clean-af/img/login-screen.png)](https://github.com/zacksmash/assets/blob/main/clean-af/img/login-screen.png)[![Dashboard Screen](https://github.com/zacksmash/assets/raw/main/clean-af/img/dashboard-screen.png)](https://github.com/zacksmash/assets/blob/main/clean-af/img/dashboard-screen.png)

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

[](#installation)

### Via Laravel Herd

[](#via-laravel-herd)

One-click install a new application using this starter kit through [Laravel Herd](https://herd.laravel.com):

[![Install with Herd](https://camo.githubusercontent.com/c62cb221d136c92117fbfd4398c9f0f038d7bc205d84db3ce1b19d46b5045009/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f496e7374616c6c25323077697468253230486572642d6666663f6c6f676f3d6c61726176656c266c6f676f436f6c6f723d663533303033)](https://herd.laravel.com/new?starter-kit=zacksmash/clean-af)

### Via the Laravel Installer

[](#via-the-laravel-installer)

Create a new Laravel application using this starter kit through the official [Laravel Installer](https://laravel.com/docs/12.x/installation#installing-php):

```
laravel new my-app --using=zacksmash/clean-af
```

Configuration
-------------

[](#configuration)

If you run into errors, you'll probably need to review the [Laravel Fortify](https://laravel.com/docs/12.x/fortify) docs. This just a frontend starter kit, so nothing is configured for things like 2FA or Email Verification out of the box.

### Email Verification

[](#email-verification)

- Visit `app/Models/User.php` and implement the `MustVerifyEmail` interface.
- Visit `app/Providers/FortifyServiceProvider.php` and uncomment `Fortify::verifyEmailView`
- Visit `config/fortify.php` and uncomment `Features::emailVerification()`
- Visit `resources/js/pages/auth/VerifyEmail.vue` and uncomment the import

### Two-Factor Authentication

[](#two-factor-authentication)

- Visit `app/Models/User.php` and use the `TwoFactorAuthenticatable` trait
- Visit `app/Providers/FortifyServiceProvider.php` and uncomment `Fortify::twoFactorChallengeView`
- Visit `config/fortify.php` and uncomment `Features::twoFactorAuthentication()`
- Visit `resources/js/pages/auth/TwoFactorChallenge.vue` and uncomment the import
- Visit `resources/js/pages/settings/TwoFactorAuth.vue` and uncomment the imports

### Wayfinder Issues

[](#wayfinder-issues)

If you run into Node error screens, you may need to compile the Wayfinder types again.

```
composer wayfinder
```

### Other Helper Commands

[](#other-helper-commands)

Run ESLint

```
npm run lint
```

Run Pint

```
composer lint
```

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance74

Regular maintenance activity

Popularity17

Limited adoption so far

Community7

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

Total

3

Last Release

147d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

frameworklaravel

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/zacksmash-clean-af/health.svg)

```
[![Health](https://phpackages.com/badges/zacksmash-clean-af/health.svg)](https://phpackages.com/packages/zacksmash-clean-af)
```

PHPackages © 2026

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