This packages allows you to register react components within your laravel application.
You can install the package via composer:
composer require esign/laravel-react-componentsThe package will automatically register a service provider.
To register the container for a react component a @reactComponent directive has been included. Props may be passed as the second parameter:
@reactComponent('article-card')
@reactComponent('article-card', ['article' => $article])In case you want some more customization you may always use the anonymous component. This component allows you to pass additional attributes and define as what HTML tag the component should be rendered:
<x-react-component
component="article-card"
:props="['article' => $article]"
as="span"
class="container"
/>To register the components in your frontend build, you may use the registerReactComponents function included in this package. This can be published using the following command:
php artisan react-components:installThe file will be copied to resources/assets/js/utils/registerReactComponents.js but may be moved to any other location.
import { ArticleCard } from "./Components/ArticleCard";
import { registerReactComponents } from "./utils/registerReactComponents";
registerReactComponents({
'article-card': ArticleCard,
});composer testThe MIT License (MIT). Please see License File for more information.