Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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