PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
View
<?php namespace Illuminate\View; class AppendableAttributeValue { /** * The attribute value. * * @var mixed */ public $value; /** * Create a new appendable attribute value. * * @param mixed $value * @return void */ public function __construct($value) { $this->value = $value; } /** * Get the string value. * * @return string */ public function __toString() { return (string) $this->value; } }
[-] ViewName.php
[edit]
[-] composer.json
[edit]
[+]
..
[-] View.php
[edit]
[-] ComponentAttributeBag.php
[edit]
[-] ViewServiceProvider.php
[edit]
[-] ViewException.php
[edit]
[-] AppendableAttributeValue.php
[edit]
[+]
Middleware
[-] Component.php
[edit]
[-] ViewFinderInterface.php
[edit]
[-] LICENSE.md
[edit]
[-] ComponentSlot.php
[edit]
[-] FileViewFinder.php
[edit]
[+]
Compilers
[+]
Engines
[-] Factory.php
[edit]
[-] DynamicComponent.php
[edit]
[-] AnonymousComponent.php
[edit]
[+]
Concerns
[-] InvokableComponentVariable.php
[edit]