PHPackages                             akas/laravel-bridge - 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. [CLI &amp; Console](/categories/cli)
4. /
5. akas/laravel-bridge

ActiveLibrary[CLI &amp; Console](/categories/cli)

akas/laravel-bridge
===================

use illuminate component laravel outside laravel in any project

v2.0.3(2y ago)1151MITPHPPHP &gt;=7.4

Since Jul 31Pushed 2y agoCompare

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

READMEChangelogDependencies (3)Versions (8)Used By (0)

Laravel Bridge
==============

[](#laravel-bridge)

[![](docs/logo.svg)](docs/logo.svg)

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

[](#installation)

Add Presenter to your composer.json file:

```
"require": {
    "akas/laravel-bridge": "^2.0.0"
}
```

> Require `illuminate/translation` when using Pagination.

Now, run a composer update on the command line from the root of your project:

```
composer update

```

> **NOTICE**: NOT support Laravel 5.4.\*

How to use
----------

[](#how-to-use)

setup

```
use Akas\LaravelBridge\Laravel;

require __DIR__.'/vendor/autoload.php';

$connections = [
    'default' => [
        'driver'    => 'mysql',
        'host'      => 'localhost',
        'port'      => 3306,
        'database'  => 'forge',
        'username'  => 'forge',
        'password'  => '',
        'charset'   => 'utf8',
        'collation' => 'utf8_unicode_ci',
        'prefix'    => '',
        'strict'    => false,
        'engine'    => null,
    ],
];

Laravel::run([
        'basePath' => FCPATH
    ])
    ->setupDatabase($connections);
```

eloquent

```
class User extends \Illuminate\Database\Eloquent\Model
{
    protected $fillable = [
       'name',
       'email',
       'password',
   ];
}

dd(User::all());
```

view

view.blade.php

```
@foreach ($rows as $row)
    {{ $row }};
@endforeach
```

view

```
echo View::make('view', ['rows' => [1, 2, 3]]);
```

### Example

[](#example)

[Laraigniter](https://github.com/akas/laraigniter)

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 57.1% 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 ~542 days

Recently: every ~416 days

Total

6

Last Release

912d ago

Major Versions

v1.1.0 → v2.0.02024-01-02

PHP version history (2 changes)v1.0.0PHP &gt;=5.5.9

v2.0.0PHP &gt;=7.4

### Community

Maintainers

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

---

Top Contributors

[![MilesChou](https://avatars.githubusercontent.com/u/1258752?v=4)](https://github.com/MilesChou "MilesChou (28 commits)")[![recca0120](https://avatars.githubusercontent.com/u/1390554?v=4)](https://github.com/recca0120 "recca0120 (10 commits)")[![andifahruddinakas](https://avatars.githubusercontent.com/u/57283157?v=4)](https://github.com/andifahruddinakas "andifahruddinakas (8 commits)")[![onecentlin](https://avatars.githubusercontent.com/u/7122270?v=4)](https://github.com/onecentlin "onecentlin (2 commits)")[![ycs77](https://avatars.githubusercontent.com/u/38133356?v=4)](https://github.com/ycs77 "ycs77 (1 commits)")

---

Tags

consoleterminalweblaravelartisanweb artisan

### Embed Badge

![Health badge](/badges/akas-laravel-bridge/health.svg)

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

###  Alternatives

[recca0120/terminal

run laravel artisan command in web application

885419.2k2](/packages/recca0120-terminal)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16458.3k8](/packages/nunomaduro-laravel-console-dusk)[rahul900day/laravel-console-spinner

Laravel Console Spinner is a spinner output for Laravel command line.

76130.4k1](/packages/rahul900day-laravel-console-spinner)[vkovic/laravel-commando

Collection of handy Laravel artisan commands that most projects needs

6141.4k](/packages/vkovic-laravel-commando)

PHPackages © 2026

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