Directory of Laravel Starter kits
  • PHP 94%
  • Blade 5.1%
  • JavaScript 0.8%
Find a file
2025-09-11 07:16:58 +04:00
.ai/guidelines feat: add laravel boost 2025-09-11 07:16:27 +04:00
.github feat: add laravel boost 2025-09-11 07:16:27 +04:00
app feat: ability to add tags to kit in Admin area 2025-05-03 13:22:50 +04:00
bootstrap chore: fix code style using pint 2025-04-02 10:31:06 +04:00
config feat: add permissions and operations 2025-04-06 15:00:39 +04:00
database feat: add permissions and operations 2025-04-06 15:00:39 +04:00
operations feat: add permissions and operations 2025-04-06 15:00:39 +04:00
public feat: add laravel boost 2025-09-11 07:16:27 +04:00
resources feat: add install with herd button 2025-04-02 10:13:00 +04:00
routes chore: fix code style using pint 2025-04-02 10:31:06 +04:00
storage first commit 2025-04-02 09:43:41 +04:00
tests chore: fix code style using pint 2025-04-02 10:31:06 +04:00
.editorconfig first commit 2025-04-02 09:43:41 +04:00
.env.example first commit 2025-04-02 09:43:41 +04:00
.gitattributes first commit 2025-04-02 09:43:41 +04:00
.gitignore feat: add laravel boost 2025-09-11 07:16:27 +04:00
artisan first commit 2025-04-02 09:43:41 +04:00
CLAUDE.md feat: add laravel boost 2025-09-11 07:16:27 +04:00
composer.json feat: add laravel boost 2025-09-11 07:16:27 +04:00
composer.lock feat: add laravel boost 2025-09-11 07:16:27 +04:00
package-lock.json feat: add laravel boost 2025-09-11 07:16:27 +04:00
package.json chore(deps-dev): bump vite from 6.2.5 to 6.3.0 2025-04-16 08:43:34 +00:00
phpunit.xml first commit 2025-04-02 09:43:41 +04:00
pint.json chore: fix code style using pint 2025-04-02 10:31:06 +04:00
postcss.config.js first commit 2025-04-02 09:43:41 +04:00
README.md Update README 2025-04-16 11:53:51 +04:00
tailwind.config.js first commit 2025-04-02 09:43:41 +04:00
vite.config.js first commit 2025-04-02 09:43:41 +04:00

KickstartLaravel

KickstartLaravel is an open-source Laravel application that helps developers discover, search, and install various Laravel starter kits with ease.

Whether you're new to Laravel or a seasoned developer looking to quickly spin up a project, KickstartLaravel gives you access to a curated directory of boilerplates, scaffolding tools, and starter kits to accelerate your development workflow.


🚀 Features

  • 🔍 Search for Laravel starter kits by keyword
  • 📦 Install starter kits directly from the interface
  • 🧱 Community-curated starter kit directory
  • 🌐 Simple and clean UI built with Filament

🛠️ Installation

To run KickstartLaravel locally, follow the steps below:

Requirements

  • PHP 8.3+
  • Composer
  • Laravel 12.x
  • Node.js and NPM/Yarn
  • MySQL or SQLite

Step-by-Step

  1. Clone the repository:

    git clone https://github.com/interfaceable/kickstartlaravel.git
    cd kickstartlaravel
    
  2. Install PHP dependencies:

    composer install
    
  3. Install JS dependencies:

    npm install && npm run dev
    # or
    yarn install && yarn dev
    
  4. Copy the .env file and configure environment:

    cp .env.example .env
    

    Update your .env with database credentials and other app config.

  5. Generate application key:

    php artisan key:generate
    
  6. Run migrations (and seeders if available):

    php artisan migrate
    
  7. Start the local development server:

    php artisan serve
    

    Access the app at http://127.0.0.1:8000.


👥 Contributing

We welcome contributions from the community! Heres how you can help:

🧑‍💻 Contribute Code

  1. Fork the repository
  2. Create a new branch for your feature or fix:
    git checkout -b feature/your-feature-name
    
  3. Commit your changes with clear messages
  4. Push to your fork:
    git push origin feature/your-feature-name
    
  5. Create a Pull Request on the main branch

Contribution Guidelines

  • Use PSR-12 coding standards
  • Use meaningful commit messages
  • Ensure tests (if any) pass before submitting PRs
  • For UI changes, ensure they are responsive and clean
  • Document your changes when applicable

📄 License

This project is open-sourced under the MIT license.


🤝 Acknowledgements

KickstartLaravel is made with ❤️ by contributors passionate about the Laravel ecosystem.


📫 Contact

Have a suggestion or issue? Feel free to open an Issue or reach out via a Pull Request!