Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahinkle/laravel-resolvable-components
Automatically resolve your Laravel Blade Component views based on the component class names to allow for cleaner components.
https://github.com/ahinkle/laravel-resolvable-components
Last synced: 19 days ago
JSON representation
Automatically resolve your Laravel Blade Component views based on the component class names to allow for cleaner components.
- Host: GitHub
- URL: https://github.com/ahinkle/laravel-resolvable-components
- Owner: ahinkle
- License: mit
- Created: 2021-03-23T20:36:08.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-12T17:09:33.000Z (10 months ago)
- Last Synced: 2024-04-14T06:55:32.693Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Auto Resolvable Laravel Blade Components
[![Build](https://github.com/ahinkle/auto-resolvable-blade-components/workflows/tests/badge.svg)](https://github.com/ahinkle/auto-resolvable-blade-components/actions)
[![Latest Version](https://img.shields.io/packagist/v/ahinkle/auto-resolvable-blade-components.svg?style=flat-square)](https://packagist.org/packages/ahinkle/auto-resolvable-blade-components)
[![Total Downloads](https://img.shields.io/packagist/dt/ahinkle/auto-resolvable-blade-components.svg?style=flat-square)](https://packagist.org/packages/ahinkle/auto-resolvable-blade-components)Automatically resolve your Blade Component views based on the component class names to allow for cleaner components.
This package was built on common architecture patterns between Laravel Components and Livewire Components. Livewire automatically resolves the Blade Views whereas Laravel Components do not and require the `render()` method. This simple but useful package solves that.
```php