Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fuelviews/laravel-layouts-wrapper
Laravel layouts wrapper package
https://github.com/fuelviews/laravel-layouts-wrapper
Last synced: about 1 month ago
JSON representation
Laravel layouts wrapper package
- Host: GitHub
- URL: https://github.com/fuelviews/laravel-layouts-wrapper
- Owner: fuelviews
- License: mit
- Created: 2024-06-12T20:00:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-11-10T01:58:52.000Z (about 2 months ago)
- Last Synced: 2024-11-10T02:22:49.506Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/funding.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel layouts wrapper package
[![Latest Version on Packagist](https://img.shields.io/packagist/v/fuelviews/laravel-layouts-wrapper.svg?style=flat-square)](https://packagist.org/packages/fuelviews/laravel-layouts-wrapper)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/fuelviews/laravel-layouts-wrapper/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/fuelviews/laravel-layouts-wrapper/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/fuelviews/laravel-layouts-wrapper/fix-php-code-style-issues.yml?label=code%20style&style=flat-square)](https://github.com/fuelviews/laravel-layouts-wrapper/actions?query=workflow%3A"Fix+PHP+code+style+issues")
[![Total Downloads](https://img.shields.io/packagist/dt/fuelviews/laravel-layouts-wrapper.svg?style=flat-square)](https://packagist.org/packages/fuelviews/laravel-layouts-wrapper)Laravel layouts wrapper package
## Installation
You can install the package via composer:
```bash
composer require fuelviews/laravel-layouts-wrapper:^0.0
```You can publish the config file with:
```bash
php artisan vendor:publish --tag="layouts-wrapper-config"
```This is the contents of the published config file:
```php
return [
// Enable or disable Google Tag Manager
'gtm_enabled' => false,// Enable or disable Livewire
'livewire_enabled' => true,// Enable or disable Navigation
'navigation_enabled' => true,// Enable or disable Forms Modal
'forms_modal_enabled' => true,
// Enable or disable Forms Modal
'forms_modal_enabled' => true,
];
```Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag="layouts-wrapper-views"
```## Usage
Wrap your blade files using:
```php
```
## Tailwindcss classes
Add laravel-forms to your tailwind.config.js file:
```javascript
content: [
'./vendor/fuelviews/laravel-*/resources/**/*.{js,vue,blade.php}',
]
```## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Thejmitchener](https://github.com/thejmitchener)
- [Fuelviews](https://github.com/fuelviews)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.