@kiwilan/vite-plugin-laravel-steward v0.0.27
laravel-steward
Laravel package to allow you to use some useful traits and methods in your Laravel application, works with vite-plugin-laravel-steward for front assets.
Documentation
See laravel-steward.netlify.app for documentation.
Installation
You can install the package via composer:
composer require kiwilan/laravel-stewardYou can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-steward-migrations"
php artisan migrateYou can publish the config file with:
php artisan vendor:publish --tag="steward-config"Optionally, you can publish the views using
php artisan vendor:publish --tag="laravel-steward-views"Vite plugin
npm install --save-dev @kiwilan/vite-plugin-laravel-stewardpnpm add @kiwilan/vite-plugin-laravel-steward -DUsage
$steward = new Kiwilan\Steward\LaravelSteward();
echo $steward->echoPhrase('Hello, Kiwilan!');Vite plugin
import { defineConfig } from "vite";
import { steward } from "@kiwilan/vite-plugin-laravel-steward";
export default defineConfig({
plugins: [
steward({
// Options
}),
],
});Testing
composer testCoverage
composer test-coverageWatch tests
composer test:watchChangelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago