PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Views
/
Traits
/
Helpers
/
Editing: RelationshipHelpers.php
<?php namespace Rappasoft\LaravelLivewireTables\Views\Traits\Helpers; use Illuminate\Support\Collection; trait RelationshipHelpers { public function isBaseColumn(): bool { return ! $this->hasRelations() && $this->hasField(); } public function hasRelations(): bool { return $this->getRelations()->count() > 0; } public function getRelations(): Collection { return collect($this->relations); } public function getRelationString(): ?string { if ($this->hasRelations()) { return $this->getRelations()->implode('.'); } return null; } }
SAVE
CANCEL