PHPackages                             wsssoftware/laravue-toolkit - 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. wsssoftware/laravue-toolkit

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

wsssoftware/laravue-toolkit
===========================

A laravel and vue toolkit

2.0.0(1y ago)01.2k1[2 PRs](https://github.com/wsssoftware/laravue-toolkit/pulls)MITPHPPHP ^8.2

Since Sep 6Pushed 1y ago1 watchersCompare

[ Source](https://github.com/wsssoftware/laravue-toolkit)[ Packagist](https://packagist.org/packages/wsssoftware/laravue-toolkit)[ Docs](https://github.com/wsssoftware/laravue-toolkit)[ RSS](/packages/wsssoftware-laravue-toolkit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (8)Versions (27)Used By (0)

A laravel and vue toolkit
=========================

[](#a-laravel-and-vue-toolkit)

[![Latest Version on NPM](https://camo.githubusercontent.com/c04f26da0fb242feeded9fa212e39fc7ca4261e7e33a03a6fbe0686489b9da06/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f762f6c6172617675652d746f6f6c6b6974)](https://npmjs.com/package/laravue-toolkit)[![Latest Version on Packagist](https://camo.githubusercontent.com/ad0611f1392d954b16d58b232b6c25a347100086b8edc21fbe800d9c1e3ba0c0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f777373736f6674776172652f6c6172617675652d746f6f6c6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/wsssoftware/laravue-toolkit)[![GitHub Tests Action Status](https://camo.githubusercontent.com/6e17b32fa8af734e3fce5ed605454afec8923636aedc31ca293b230958fc2cbe/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f777373736f6674776172652f6c6172617675652d746f6f6c6b69742f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/wsssoftware/laravue-toolkit/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/dcb06538df2f0eb2c4048514bb4955dc25205fe7397aa66194d8519e3ad3ab2b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f777373736f6674776172652f6c6172617675652d746f6f6c6b69742f466978253230504850253230636f64652532307374796c652532306973737565733f6c6162656c3d636f64652532307374796c65)](https://github.com/wsssoftware/laravue-toolkit/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![npm](https://camo.githubusercontent.com/49f5b1a538c409be798d4aa81626f42fe6cc56cdca3a8b3cdbe0b21f6dca200d/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f64742f6c6172617675652d746f6f6c6b69743f6c6162656c3d6e706d253230646f776e6c6f616473)](https://camo.githubusercontent.com/49f5b1a538c409be798d4aa81626f42fe6cc56cdca3a8b3cdbe0b21f6dca200d/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f64742f6c6172617675652d746f6f6c6b69743f6c6162656c3d6e706d253230646f776e6c6f616473)[![Packagist Downloads](https://camo.githubusercontent.com/0cd39292967f8bff7cb78ab570afcbe3aaa82a8c5439aa86fdf03d0c61c26284/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f777373736f6674776172652f6c6172617675652d746f6f6c6b69743f6c6162656c3d7061636b6167697374253230646f776e6c6f616473)](https://camo.githubusercontent.com/0cd39292967f8bff7cb78ab570afcbe3aaa82a8c5439aa86fdf03d0c61c26284/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f777373736f6674776172652f6c6172617675652d746f6f6c6b69743f6c6162656c3d7061636b6167697374253230646f776e6c6f616473)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Support us
----------

[](#support-us)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

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

[](#installation)

You can install the package via composer:

```
composer require wsssoftware/laravue-toolkit
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="laravue-toolkit-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravue-toolkit-config"
```

This is the contents of the published config file:

```
return [
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="laravue-toolkit-views"
```

### Important

[](#important)

You must configure the [maska](https://www.npmjs.com/package/maska) npm package to work with your vue application.

```
const app = Vue.createApp({...})
// use as plugin
app.use(Maska);
// or as directive
// app.directive('maska', Maska.maska);
app.mount('#app');
```

Usage
-----

[](#usage)

```
$laravueToolkit = new Laravue\LaravueToolkit();
echo $laravueToolkit->echoPhrase('Hello, Laravue!');
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Allan Carvalho](https://github.com/wsssoftware)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 91.3% 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 ~29 days

Recently: every ~78 days

Total

22

Last Release

719d ago

Major Versions

0.4.5 → 1.0.02023-01-16

1.4.6 → 2.0.02024-05-23

PHP version history (2 changes)0.2.0-alpha.4PHP ^8.1

2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/2f933258a2b9bfecc0be13f8e6786c5c937e288fed34fea37054563da4bf02e8?d=identicon)[allanivp](/maintainers/allanivp)

---

Top Contributors

[![allanmcarvalho](https://avatars.githubusercontent.com/u/12012197?v=4)](https://github.com/allanmcarvalho "allanmcarvalho (178 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")

---

Tags

laravelwsssoftwarelaravue-toolkit

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/wsssoftware-laravue-toolkit/health.svg)

```
[![Health](https://phpackages.com/badges/wsssoftware-laravue-toolkit/health.svg)](https://phpackages.com/packages/wsssoftware-laravue-toolkit)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

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