for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\BladeX;
class BladeXComponent
{
/** @var string */
public $name;
public $bladeViewName;
public function __construct(string $name, string $bladeViewName)
$this->name = $name;
$this->bladeViewName = $bladeViewName;
}