PHPackages                             mgahed/laravel-starter-kit - 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. mgahed/laravel-starter-kit

ActiveProject[Framework](/categories/framework)

mgahed/laravel-starter-kit
==========================

The skeleton application for the Laravel framework.

v1.1.2(1y ago)39MITJavaScriptPHP ^8.2

Since Mar 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Mgahed/laravel-starter-kit)[ Packagist](https://packagist.org/packages/mgahed/laravel-starter-kit)[ RSS](/packages/mgahed-laravel-starter-kit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (12)Versions (5)Used By (0)

Mgahed Laravel Starter Kit
==========================

[](#mgahed-laravel-starter-kit)

[![Packagist Version](https://camo.githubusercontent.com/ead51091b4ecce4c308e190617fb038c09f38524c745429d86c484d1ed3cd4d2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d626c7565)](https://camo.githubusercontent.com/ead51091b4ecce4c308e190617fb038c09f38524c745429d86c484d1ed3cd4d2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d626c7565)[![Packagist Downloads](https://camo.githubusercontent.com/94a07f666ad2d15a6f28fa24c149c857271de0acbf9964f32ab6549f7b48345b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d626c7565)](https://camo.githubusercontent.com/94a07f666ad2d15a6f28fa24c149c857271de0acbf9964f32ab6549f7b48345b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d626c7565)[![Packagist License](https://camo.githubusercontent.com/0a0f66e4a87f4cac6e8f29013986a54db7daacf3f4d36cb161c0cf17a6f60aac/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d677265656e)](https://camo.githubusercontent.com/0a0f66e4a87f4cac6e8f29013986a54db7daacf3f4d36cb161c0cf17a6f60aac/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d677265656e)[![Packagist PHP Version Support](https://camo.githubusercontent.com/c4b89d7433be1bcbf63e35a7fac91f5bbbe66b4420103ea44a6625fb8ee047f2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d707572706c65)](https://camo.githubusercontent.com/c4b89d7433be1bcbf63e35a7fac91f5bbbe66b4420103ea44a6625fb8ee047f2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d707572706c65)[![Packagist Stars](https://camo.githubusercontent.com/2f5d838b9e01c35f9921b3c57bb80d795ab0c45eaab5438d7ce75b818f5defce/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d6f72616e6765)](https://camo.githubusercontent.com/2f5d838b9e01c35f9921b3c57bb80d795ab0c45eaab5438d7ce75b818f5defce/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6d67616865642f6c61726176656c2d737461727465722d6b69743f7374796c653d666c617426636f6c6f723d6f72616e6765)

The package `mgahed/laravel-starter-kit` allows you to easily use starter templates for your Laravel projects.

This is a Laravel Starter Kit project, This kit supports authentication and (view, edit, delete) profile using Saul theme. And you can easily customize and use the theme features in your project.

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

[](#installation)

```
laravel new --using=mgahed/laravel-starter-kit
```

Publishing
----------

[](#publishing)

#### assets

[](#assets)

```
php artisan vendor:publish --tag="mgahed-laravel-starter-assets"
```

This will add folder assets to the `public` path in your Laravel project.

#### migrations

[](#migrations)

```
php artisan vendor:publish --tag="mgahed-laravel-starter-migrations"
```

#### seeders

[](#seeders)

```
php artisan vendor:publish --tag="mgahed-laravel-starter-seeders"
```

Running Migrations
------------------

[](#running-migrations)

```
php artisan migrate --path=database/migrations/mgahed-laravel-starter
```

Running Seeders
---------------

[](#running-seeders)

```
php artisan db:seed --class=Mgahed\LaravelStarter\Database\Seeders\MgahedStarterSitesSeeder
```

```
php artisan db:seed --class=Mgahed\LaravelStarter\Database\Seeders\MgahedStarterMenusSeeder
```

Features supported
------------------

[](#features-supported)

- Authentication
- Profile (view, edit, delete)
- Easy translation system
- Saul Theme supported
- Easy to customize
- Easy menu customization
- Supports `mcamara/laravel-localization` package
    - publish the config file `php artisan vendor:publish --provider="Mcamara\LaravelLocalization\LaravelLocalizationServiceProvider"`
    - See docs [here](https://github.com/mcamara/laravel-localization)
- Supports `spatie/laravel-translatable` package
    - See docs [here](https://spatie.be/docs/laravel-translatable/v5/introduction)

Supported Links
---------------

[](#supported-links)

- [Saul Theme](https://keenthemes.com/products/saul-html-free)

### Support me by clicking the button below

[](#support-me-by-clicking-the-button-below)

 [![](https://camo.githubusercontent.com/467fa8c82e73846b41fb1bcc52d28eafa2ca1d3f297c445ba9476403e96bc403/68747470733a2f2f63646e2e70726f642e776562736974652d66696c65732e636f6d2f3563313465333837646162353736666536363736383963662f3637306635613031633031656139313931383039333938635f737570706f72745f6d655f6f6e5f6b6f66695f626c75652e706e67)](https://ko-fi.com/mgahed)

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance45

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Total

4

Last Release

425d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7ac4d6fc36e59659d2659b358348d3ecec8ea11317989ff989bf3b5954c44d12?d=identicon)[Mgahed](/maintainers/Mgahed)

---

Top Contributors

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

---

Tags

laravellaravel-frameworkphpstarterstarter-kitframeworklaravelstarter-kitstart-kit

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/mgahed-laravel-starter-kit/health.svg)

```
[![Health](https://phpackages.com/badges/mgahed-laravel-starter-kit/health.svg)](https://phpackages.com/packages/mgahed-laravel-starter-kit)
```

###  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)

PHPackages © 2026

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