Skip to content

Instantly share code, notes, and snippets.

@dvlpp
Created December 18, 2019 16:30
Show Gist options
  • Save dvlpp/f8414c18600b8fb46955790f922602b2 to your computer and use it in GitHub Desktop.
Save dvlpp/f8414c18600b8fb46955790f922602b2 to your computer and use it in GitHub Desktop.
SpaceshipSharpShow embedded list with filter
<?php
class SpaceshipSharpShow extends SharpShow
{
function buildShowFields()
{
// [...]
$this
->addField(
SharpShowEntityListField::make("pilots", "pilot")
->hideFilterWithValue("spaceship", function($instanceId) {
return $instanceId;
})
->showEntityState(false)
->showCreateButton()
);
}
// [...]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment