On this page
AnonymousComponent
class AnonymousComponent extends Component (View source)
Properties
protected array | $except | The properties / methods that should not be exposed to the component. |
from Component |
string | $componentName | The component alias name. |
from Component |
ComponentAttributeBag | $attributes | The component attributes. |
from Component |
static protected Factory|null | $factory | The view factory instance, if any. |
from Component |
static protected | $componentsResolver | The component resolver callback. |
from Component |
static protected array<string,string> | $bladeViewCache | The cache of blade view names, keyed by contents. |
from Component |
static protected array | $propertyCache | The cache of public property names, keyed by class. |
from Component |
static protected array | $methodCache | The cache of public method names, keyed by class. |
from Component |
static protected array<class-string,array<int,string>> | $constructorParametersCache | The cache of constructor parameters, keyed by class. |
from Component |
protected string | $view | The component view. |
|
protected array | $data | The component data. |
Methods
View|Htmlable|Closure|string | render() Get the view / view contents that represent the component. |
|
static Component | resolve(array $data) Resolve the component instance with the given data. |
from Component |
static array | extractConstructorParameters() Extract the constructor parameters for the component. |
from Component |
View|Htmlable|Closure|string | resolveView() Resolve the Blade view or view file that should be used when rendering the component. |
from Component |
string | extractBladeViewFromString(string $contents) Create a Blade view with the raw component string content. |
from Component |
string | createBladeViewFromString(Factory $factory, string $contents) Create a Blade view with the raw component string content. |
from Component |
array | data() Get the data that should be supplied to the view. |
|
array | extractPublicProperties() Extract the public properties for the component. |
from Component |
array | extractPublicMethods() Extract the public methods for the component. |
from Component |
mixed | createVariableFromMethod(ReflectionMethod $method) Create a callable variable from the given method. |
from Component |
InvokableComponentVariable | createInvokableVariable(string $method) Create an invokable, toStringable variable for the given component method. |
from Component |
bool | shouldIgnore(string $name) Determine if the given property / method should be ignored. |
from Component |
array | ignoredMethods() Get the methods that should be ignored. |
from Component |
$this | withName(string $name) Set the component alias name. |
from Component |
$this | withAttributes(array $attributes) Set the extra attributes that the component should make available. |
from Component |
ComponentAttributeBag | newAttributeBag(array $attributes = []) Get a new attribute bag instance. |
from Component |
bool | shouldRender() Determine if the component should be rendered. |
from Component |
View | view(string|null $view, Arrayable|array $data = [], array $mergeData = []) Get the evaluated view contents for the given view. |
from Component |
Factory | factory() Get the view factory instance. |
from Component |
static void | flushCache() Flush the component's cached state. |
from Component |
static void | forgetFactory() Forget the component's factory instance. |
from Component |
static void | forgetComponentsResolver() Forget the component's resolver callback. |
from Component |
static void | resolveComponentsUsing($resolver) Set the callback that should be used to resolve components within views. |
from Component |
void | __construct(string $view, array $data) Create a new anonymous component instance. |
Details
static Component resolve(array $data)
Resolve the component instance with the given data.
static protected array extractConstructorParameters()
Extract the constructor parameters for the component.
View|Htmlable|Closure|string resolveView()
Resolve the Blade view or view file that should be used when rendering the component.
protected string extractBladeViewFromString(string $contents)
Create a Blade view with the raw component string content.
protected string createBladeViewFromString(Factory $factory, string $contents)
Create a Blade view with the raw component string content.
array data()
Get the data that should be supplied to the view.
protected array extractPublicProperties()
Extract the public properties for the component.
protected array extractPublicMethods()
Extract the public methods for the component.
protected mixed createVariableFromMethod(ReflectionMethod $method)
Create a callable variable from the given method.
protected InvokableComponentVariable createInvokableVariable(string $method)
Create an invokable, toStringable variable for the given component method.
protected bool shouldIgnore(string $name)
Determine if the given property / method should be ignored.
protected array ignoredMethods()
Get the methods that should be ignored.
$this withName(string $name)
Set the component alias name.
$this withAttributes(array $attributes)
Set the extra attributes that the component should make available.
protected ComponentAttributeBag newAttributeBag(array $attributes = [])
Get a new attribute bag instance.
bool shouldRender()
Determine if the component should be rendered.
View view(string|null $view, Arrayable|array $data = [], array $mergeData = [])
Get the evaluated view contents for the given view.
protected Factory factory()
Get the view factory instance.
static void flushCache()
Flush the component's cached state.
static void forgetFactory()
Forget the component's factory instance.
static void forgetComponentsResolver()
internal |
Forget the component's resolver callback.
static void resolveComponentsUsing($resolver)
internal |
Set the callback that should be used to resolve components within views.
void __construct(string $view, array $data)
Create a new anonymous component instance.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/10.x/Illuminate/View/AnonymousComponent.html