/home/techb158/dev.balacoffee.com/vendor/laravel/framework/src/Illuminate/View
NameSizeModeActions
Compilers/-0755rm
Concerns/-0755rm
Engines/-0755rm
Middleware/-0755rm
AnonymousComponent.php11720644editdlrm
AppendableAttributeValue.php5200644editdlrm
Component.php77700644editdlrm
ComponentAttributeBag.php101020644editdlrm
ComponentSlot.php16000644editdlrm
composer.json10390644editdlrm
DynamicComponent.php47680644editdlrm
Factory.php149290644editdlrm
FileViewFinder.php73080644editdlrm
InvokableComponentVariable.php20240644editdlrm
LICENSE.md10750644editdlrm
View.php98470644editdlrm
ViewException.php8980644editdlrm
ViewFinderInterface.php14510644editdlrm
ViewName.php5230644editdlrm
ViewServiceProvider.php45700644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/laravel/framework/src/Illuminate/View/ComponentSlot.php (1600B)
contents = $contents; $this->withAttributes($attributes); } /** * Set the extra attributes that the slot should make available. * * @param array $attributes * @return $this */ public function withAttributes(array $attributes) { $this->attributes = new ComponentAttributeBag($attributes); return $this; } /** * Get the slot's HTML string. * * @return string */ public function toHtml() { return $this->contents; } /** * Determine if the slot is empty. * * @return bool */ public function isEmpty() { return $this->contents === ''; } /** * Determine if the slot is not empty. * * @return bool */ public function isNotEmpty() { return ! $this->isEmpty(); } /** * Get the slot's HTML string. * * @return string */ public function __toString() { return $this->toHtml(); } }