Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
:
AppendableAttributeValue-20250318202949.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\View; use Stringable; class AppendableAttributeValue implements Stringable { /** * 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; } }