Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
spatie
/
laravel-data
/
src
/
Concerns
:
IncludeableData.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\LaravelData\Concerns; use Spatie\LaravelData\Support\Partials\ForwardsToPartialsDefinition; trait IncludeableData { use ForwardsToPartialsDefinition; protected function getPartialsContainer(): object { return $this->getDataContext(); } protected function includeProperties(): array { return []; } protected function excludeProperties(): array { return []; } protected function onlyProperties(): array { return []; } protected function exceptProperties(): array { return []; } }