for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\BladeX;
use Illuminate\Support\Collection;
/**
* @property-read Component $each
*/
class ComponentCollection extends Collection
{
public function prefix(string $prefix)
$this->each->prefix($prefix);
return $this;
}
public function withoutNamespace()
$this->each->withoutNamespace();