Closed warksit closed 7 years ago
I know how to include related data in the DataGrid: $this->grid->add('user.name', 'User Name'); but what I am after is to display related data on the 'Show' page. Is this possible?
$this->grid->add('user.name', 'User Name');
Simples! Make it a select and then shows correctly on show page.
$this->edit->add('user_id','User','select')->options(\App\User::lists("first_name", "id")->all());
$this->edit->add('user_id','User','select')->options(\App\User::lists("first_name",
I know how to include related data in the DataGrid:
$this->grid->add('user.name', 'User Name');
but what I am after is to display related data on the 'Show' page. Is this possible?