Skip to content

Instantly share code, notes, and snippets.

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