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

ActiveProject[Framework](/categories/framework)

anisaronno/laravel-starter
==========================

A perfect laravel starter project for any kind of project.

0.3.3(1y ago)161776[1 PRs](https://github.com/anisAronno/laravel-starter/pulls)MITBladePHP ^8.2

Since Dec 29Pushed 1y ago2 watchersCompare

[ Source](https://github.com/anisAronno/laravel-starter)[ Packagist](https://packagist.org/packages/anisaronno/laravel-starter)[ RSS](/packages/anisaronno-laravel-starter/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelog (10)Dependencies (24)Versions (39)Used By (0)

\# Laravel-11 Starter Project
=============================

[](#-laravel-11-starter-project)

Welcome to the Laravel Starter Project! This repository provides a kickstart setup for Laravel version 11, incorporating various essential packages and features. It's designed to streamline your Laravel application development process.

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

[](#table-of-contents)

- [\# Laravel-11 Starter Project](#-laravel-11-starter-project)
    - [Table of Contents](#table-of-contents)
    - [Uses Packages](#uses-packages)
    - [Dashboard Template](#dashboard-template)
    - [Other Uses](#other-uses)
    - [Features](#features)
    - [Getting Started](#getting-started)
        - [Installation](#installation)
        - [Starting with Docker](#starting-with-docker)
    - [Deploy via FTP with CI/CD](#deploy-via-ftp-with-cicd)
        - [GitFlow for Merge Requests](#gitflow-for-merge-requests)
        - [FTP Deployment Process](#ftp-deployment-process)
    - [Laravel Self Updater](#laravel-self-updater)
        - [Features](#features-1)
        - [Usage](#usage)
        - [Error Handling](#error-handling)
    - [Contribution Guide](#contribution-guide)
    - [License](#license)

Uses Packages
-------------

[](#uses-packages)

- Laravel [Breeze](https://laravel.com/docs/11.x/starter-kits#laravel-breeze) (Used only backend code for authentication)
- [Spatie](https://github.com/spatie/laravel-permission) Roll and Permission
- Laravel [Telescope](https://laravel.com/docs/11.x/telescope) (Elegant debug assistant for local development)
- Laravel [Pulse](https://laravel.com/docs/11.x/pulse) (Application's performance Monitoring)
- Laravel [Clockwork](https://github.com/itsgoingd/clockwork) (Request Monitoring)
- Laravel [Horizon](https://laravel.com/docs/11.x/horizon) (Job And Queue manage)
- Laravel [Settings](https://github.com/anisAronno/laravel-settings) (Personal Package for application settings)
- Laravel [Media Gallery](https://github.com/anisAronno/laravel-media-gallery) (Personal Package for file management)
- Laravel [Activity Log](https://github.com/spatie/laravel-activitylog) (Track User Activity)
- Beautiful [Log Viewer](https://github.com/opcodesio/log-viewer) for local and production
- Laravel [Sweet Alert](https://github.com/realrashid/sweet-alert)
- Laravel [Pint](https://laravel.com/docs/11.x/pint) For code style fixing

Dashboard Template
------------------

[](#dashboard-template)

Utilizing the [admintoolkit-html](https://github.com/mostafizurhimself/admintoolkit-html) repository as our Dashboard Template. Explore this open-source admin template for more insights and details.

`We acknowledge the contributors for their valuable creation.`

Other Uses
----------

[](#other-uses)

- Laravel [Database Notification](https://laravel.com/docs/11.x/notifications#database-notifications)
- Api authentication setup with [default token](https://laravel.com/docs/5.8/api-authentication)
- Api authentication setup with [Sanctum](https://laravel.com/docs/11.x/sanctum)

Features
--------

[](#features)

- Setup Role and permission with CRUD
- User Table showing and CRUD Complete
- Dashboard templating with Responsive Sidebar
- Use dark mode and light mode
- Show user notification
- Show User Activity log
- Central Media Gallery
- Editor JS for Content writing
- Application Settings setup
- User Timezone and Language setup by her location

Getting Started
---------------

[](#getting-started)

### Installation

[](#installation)

1. Install the project with Composer:

    ```
    composer create-project anisaronno/laravel-starter

    ```
2. Switch to the repository folder:

    ```
    cd laravel-starter

    ```
3. Setup environment variables for the database and email.
4. Run database migrations:

    ```
    php artisan migrate

    ```
5. Run database seeding:

    ```
    php artisan db:seed

    ```
6. Run Jobs:

    ```
    php artisan horizon

    ```

    or

    ```
    php artisan queue:work

    ```

    or

    ```
    php artisan schedule:run

    ```
7. Run command for development:

    ```
    npm run dev

    ```

    for frontend build:

    ```
    npm run build

    ```
8. Start the local development server:

    ```
    php artisan serve

    ```

Now, access the server at .

### Starting with Docker

[](#starting-with-docker)

To start the Laravel Starter Project with Docker, you can utilize the provided `docker-compose.yml` file. Follow these steps:

1. Ensure Docker is installed on your system.
2. Create a `docker-compose.yml` file in the root directory of your project with the following content:

```
version: '3'
services:
  # Define your services here (e.g., nginx, php, mysql, etc.)
  # Example services:
  nginx:
    image: nginx:alpine
    # Add your nginx configurations

  php:
    image: php:8.2-fpm
    # Add your PHP configurations

  # Add other necessary services as required.
```

3. Define the required services such as nginx, php, MySQL, etc., in the `docker-compose.yml` file based on your project's needs.
4. Once the `docker-compose.yml` file is configured, run the following command to start the services:

```
docker-compose up -d
```

5. Access your Laravel application at  or the specified port as per your configurations.

Deploy via FTP with CI/CD
-------------------------

[](#deploy-via-ftp-with-cicd)

This project utilizes Continuous Integration/Continuous Deployment (CI/CD) for automated deployment via FTP, following GitFlow principles for merge requests.

#### GitFlow for Merge Requests

[](#gitflow-for-merge-requests)

Follow GitFlow principles to manage merge requests:

- **Feature Branches**: Develop new features in separate branches.
- **Pull Requests**: Submit pull requests to merge features into the `develop` branch.
- **Merge to Master**: Merge from `develop` to `master` for production-ready code.

#### FTP Deployment Process

[](#ftp-deployment-process)

To deploy your project:

1. Configure necessary environment variables in GitHub Settings:

    - **SERVER**: Your FTP server address.
    - **USERNAME**: Your FTP username.
    - **PASSWORD**: Your FTP password.
2. Upon merging into the `master` branch, GitHub Actions automates deployment to your specified FTP server.

Laravel Self Updater
--------------------

[](#laravel-self-updater)

The Laravel Self Updater feature streamlines the process of updating your Laravel Starter application, making it easy to manage and deploy updates with minimal effort. Here’s how to use it:

### Features

[](#features-1)

- Automatically checks for updates.
- Initiates updates with simple Artisan commands.

### Usage

[](#usage)

1. **Check for Updates:**Run the following command to check for available updates.

    ```
    php artisan update:check
    ```
2. **Initiate Update:**Use the following command to initiate the update process.

    ```
    php artisan update:initiate {version?}
    ```

    Replace `{version?}` with a specific version number if desired; otherwise, it will initiate the update for the latest version.

### Error Handling

[](#error-handling)

Ensure to handle any potential errors during the update process gracefully. Implement logging to monitor any issues that arise during updates.

Contribution Guide
------------------

[](#contribution-guide)

For guidelines on contributing to this project, refer to the [Contribution Guide](https://github.com/anisaronno/laravel-starter/blob/develop/CONTRIBUTING.md).

License
-------

[](#license)

This application is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity57

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

Recently: every ~66 days

Total

26

Last Release

572d ago

PHP version history (2 changes)0.0.1PHP ^8.1

0.3.0PHP ^8.2

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

admin-paneladmintoolkitblade-template-enginelaravelmultipupupose-admin-templatemultipurpose-ecommerce-templatephp8starter-kittailwindcssframeworklaraveltailwinddashboardadmin-panel

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[krayin/laravel-crm

Krayin CRM

22.0k32.8k1](/packages/krayin-laravel-crm)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[juzaweb/cms

Juzaweb CMS is a Content Management System (CMS) developed based on Laravel Framework and web platform whose sole purpose is to make your development workflow simple again. Project develop by Juzaweb

187571.2k](/packages/juzaweb-cms)

PHPackages © 2026

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