PHPackages                             properos/laravel-base - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. properos/laravel-base

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

properos/laravel-base
=====================

An amazing toolkit to kickstart your Laravel project.

v1.0.15(5mo ago)13.5k↓67.4%MITBladePHP &gt;=5.6.4

Since Feb 24Pushed 5mo ago3 watchersCompare

[ Source](https://github.com/properos/laravel-base)[ Packagist](https://packagist.org/packages/properos/laravel-base)[ RSS](/packages/properos-laravel-base/feed)WikiDiscussions master Synced today

READMEChangelog (10)DependenciesVersions (18)Used By (0)

Properos Base
-------------

[](#properos-base)

Base package with classes (Api, Base, Helper, Paginator, Theme), controllers and views necessarry to start a project.

**Register provider on config/app.php**

```
    'providers' => [
        "...",
        Properos\Base\BaseServiceProvider::class,
        "..."
    ],
```

**Run**composer dump php artisan vendor:publish Select -&gt; Properos\\Base\\BaseServiceProvider

**Themes**It contains a Themes class to allow the use of several themes in the project. The name of theme is declared on env variable "THEME", if this variable isn't declare it going to take a default theme.

**Use themes on routers.**

```
    Route::get('/', function () {
        return  view('themes.'.\Properos\Base\Classes\Theme::get().'.index')->with(['theme'=>\Properos\Base\Classes\Theme::get()]);
    });
```

**Create env.js**Add on webpack.mix.js .js('resources/assets/js/bootstrap.js', 'public/be/js/core.js') .sass('resources/assets/js/be/sass/app.scss', 'public/be/css')

**Add on resources/assets/bootstrap.js**

```
    import Helpers from './misc/helpers'
    window.Helpers = Helpers;
```

**Remove from resources/assets/bootstrap.js**

```
    try {
        window.$ = window.jQuery = require('jquery');

        require('bootstrap');
    } catch (e) {}
```

**Run npm install**

**Define host, database on .env**

```
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=database_name
    DB_USERNAME=root
    DB_PASSWORD=
```

**Add on app/Providers/AppServiceProvider.php**

```
    use Illuminate\Support\Facades\Schema;

    public function boot()
    {
        Schema::defaultStringLength(191);
    }
```

**Run php artisan migrate**

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance72

Regular maintenance activity

Popularity22

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.9% 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 ~112 days

Recently: every ~343 days

Total

17

Last Release

158d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6c4369392b367c14bcd195185641dda7868b05f1401b6bfb8d31aaef366ba043?d=identicon)[properos](/maintainers/properos)

---

Top Contributors

[![raherediag](https://avatars.githubusercontent.com/u/10603112?v=4)](https://github.com/raherediag "raherediag (29 commits)")[![properos](https://avatars.githubusercontent.com/u/20114955?v=4)](https://github.com/properos "properos (3 commits)")[![yoandro](https://avatars.githubusercontent.com/u/10782005?v=4)](https://github.com/yoandro "yoandro (1 commits)")

---

Tags

laravelproperos

### Embed Badge

![Health badge](/badges/properos-laravel-base/health.svg)

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

###  Alternatives

[stephenjude/filament-blog

Filament Blog Builder

20619.4k](/packages/stephenjude-filament-blog)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11273.0k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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