How can I pass the list to the component variable in Laravel?
PHP Snippet 1:
<x-widgets.pricingCard name="Free" allowedFeaturesList="{!! json_encode($allowedFeaturesList) !!}}"/>
PHP Snippet 2:
{
$this->name= $name;
$this->allowedFeaturesList= json_decode($allowedFeaturesList);
}