🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
wapi.krishivgroups.com
/
vendor
/
filament
/
actions
/
src
/
Concerns
✏️
Editing: CanBeLabeledFrom.php
<?php namespace Filament\Actions\Concerns; use Closure; trait CanBeLabeledFrom { protected string | Closure | null $labeledFrom = null; public function labeledFrom(string | Closure | null $breakpoint = null): static { $this->labeledFrom = $breakpoint; return $this; } public function getLabeledFromBreakpoint(): ?string { return $this->evaluate($this->labeledFrom); } }
💾 Save Changes
❌ Cancel