%PDF- %PDF-
| Direktori : /www/loslex_o/demo/vendor/livewire/livewire/src/Features/SupportFormObjects/ |
| Current File : /www/loslex_o/demo/vendor/livewire/livewire/src/Features/SupportFormObjects/HandlesFormObjects.php |
<?php
namespace Livewire\Features\SupportFormObjects;
trait HandlesFormObjects
{
public function getFormObjects()
{
$forms = [];
foreach ($this->all() as $key => $value) {
if ($value instanceof Form) {
$forms[] = $value;
}
}
return $forms;
}
}