https://github.com/melihovv/laravel-compile-views
Missing view:compile command for laravel [ABANDONED]
https://github.com/melihovv/laravel-compile-views
laravel optimization views
Last synced: 6 months ago
JSON representation
Missing view:compile command for laravel [ABANDONED]
- Host: GitHub
- URL: https://github.com/melihovv/laravel-compile-views
- Owner: melihovv
- License: mit
- Archived: true
- Created: 2017-11-05T14:34:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-24T08:20:25.000Z (over 6 years ago)
- Last Synced: 2025-09-06T15:59:42.064Z (10 months ago)
- Topics: laravel, optimization, views
- Language: PHP
- Homepage:
- Size: 15.6 KB
- Stars: 20
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Compile Views
[](https://travis-ci.org/melihovv/laravel-compile-views)
[](https://styleci.io/repos/109587030)
[](https://scrutinizer-ci.com/g/melihovv/laravel-compile-views/?branch=master)
[](https://insight.sensiolabs.com/projects/28893314-076d-4940-bfc2-d5aac1bfec0b)
[](https://packagist.org/packages/melihovv/laravel-compile-views)
[](https://packagist.org/packages/melihovv/laravel-compile-views)
[](https://packagist.org/packages/melihovv/laravel-compile-views)
**Recently `view:cache` command was built in Laravel. So there is no need in this package anymore :)**
Missing view:compile command for laravel.
The perfect solution in combination with [blade minifier](https://github.com/HTMLMin/Laravel-HTMLMin): get minified compiled views with zero cost during your deploy script.
## Installation
Install via composer
```bash
composer require melihovv/laravel-compile-views
```
**Following step is optional if you use laravel>=5.5 with package
auto discovery feature.**
Add service provider to `config/app.php` in `providers` section
```php
Melihovv\LaravelCompileViews\ServiceProvider::class,
```
## Usage
```bash
php artisan view:compile
```
## Security
If you discover any security related issues, please email amelihovv@ya.ru
instead of using the issue tracker.
## Credits
- [Alexander Melihov](https://github.com/melihovv/laravel-compile-views)
- [All contributors](https://github.com/melihovv/laravel-compile-views/graphs/contributors)
This package is bootstrapped with the help of
[melihovv/laravel-package-generator](https://github.com/melihovv/laravel-package-generator).