PHPackages                             globalxtreme/laravel-backend-service - 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. globalxtreme/laravel-backend-service

ActiveProject[Framework](/categories/framework)

globalxtreme/laravel-backend-service
====================================

GlobalXtreme Default Backend Service V2.

v2.1.5(1y ago)047MITPHPPHP ^8.3

Since Sep 7Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/globalxtreme/laravel-backend-service)[ Packagist](https://packagist.org/packages/globalxtreme/laravel-backend-service)[ RSS](/packages/globalxtreme-laravel-backend-service/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (13)Versions (55)Used By (0)

Installation &amp; Configuration
================================

[](#installation--configuration)

### Installation

[](#installation)

```
composer create-project globalxtreme/laravel-backend-service project

```

### Configuration system in config/base.conf.php

[](#configuration-system-in-configbaseconfphp)

```
return [

    'prefix' => [

        // Base uri for website application
        'web' => env('BASE_WEB_PREFIX', 'web'),

        // Base uri for mobile application
        'mobile' => env('BASE_MOBILE_PREFIX', 'mobile'),

    ],

    'namespace' => [

        // Base namespace for website application
        'web' => env('BASE_WEB_NAMESPACE', 'Web'),

        // Base namespace for mobile application
        'mobile' => env('BASE_MOBILE_NAMESPACE', 'Mobile'),

    ]

];
```

### Authorization

[](#authorization)

Install [laravel-identifier](https://github.com/globalxtreme/laravel-identifier). If you don't have access to this package, please contact your head for invite you to this package

### Generate trait for activity properties file in model

[](#generate-trait-for-activity-properties-file-in-model)

```
php artisan make:activity path\ModelClass

```

After success generate activity file, you can check in model directory. Ex: generate activity class for **App\\Models\\Component\\Example::class.** You can run command like this **"php artisan make:activity Component\\Component"**will generate activity **trait** file **App\\Models\\Component\\Traits\\HasActivityComponentProperty::class.**

### Generate number generator class

[](#generate-number-generator-class)

```
php artisan make:number ClassName

```

After success generate number generator, you can check in **app\\Services\\Number\\Generator** path. You can modify the number generator if you have a custom format.

```
class TestingNumber extends BaseNumber
{
    /**
     * @var string
     */
    protected static string $prefix = "TXT"; // Your prefix number (code)

    /**
     * @var Model|string|null
     */
    protected Model|string|null $model = null;

    // Add this function if you have a custom format.
    public static function generate(): string {
        // Your custom format
    }

}
```

### Generate form class (builder)

[](#generate-form-class-builder)

```
php artisan make:form path\FormClass

```

After generate form class, you can check file in **app\\Services\\Form** path. Ex: generate form for component, you can run command like this **php artisan make:form Component\\ComponentForm**. You can check file in **app\\Services\\Form\\Component\\ComponentForm.php.**

### Generate constant class (for component)

[](#generate-constant-class-for-component)

```
// Generate basic constant for ID(int) and Name(string)
php artisan make:constant path\ConstantClass

// Generate constant for Code(string) and Name(string)
php artisan make:constant path\ConstantClass -c

```

After generate constant class with command, you can check class in **app\\Services\\Constant\\Path\\ConstantClass.php.**

### Generate parser class

[](#generate-parser-class)

```
php artisan make:parser path\ParserClass

```

After generate parser class, you can check parser class in **app\\Services\\Parser\\Path\\ParserClass.php.**

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance57

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity75

Established project with proven stability

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

Recently: every ~45 days

Total

50

Last Release

348d ago

Major Versions

v1.1.x-dev → v2.0.02024-05-12

PHP version history (3 changes)1.0.0PHP ^8.0.2

v2.0.0PHP ^8.2

v2.0.1PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/17e52063ab79a90d8f0d74b88a69b32f26321d910c7808ac934ad704c26f4da2?d=identicon)[globalxtreme](/maintainers/globalxtreme)

---

Top Contributors

[![yuswa-arba](https://avatars.githubusercontent.com/u/34733910?v=4)](https://github.com/yuswa-arba "yuswa-arba (55 commits)")

---

Tags

frameworklaravel

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/globalxtreme-laravel-backend-service/health.svg)

```
[![Health](https://phpackages.com/badges/globalxtreme-laravel-backend-service/health.svg)](https://phpackages.com/packages/globalxtreme-laravel-backend-service)
```

###  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)[ercogx/laravel-filament-starter-kit

This is a Filament v3 Starter Kit for Laravel 12, designed to accelerate the development of Filament-powered applications.

401.5k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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