serverfireteam / panel

An easily configurable admin panel for Laravel applications.
MIT License
427 stars 144 forks source link

On 'Show' page include related data #342

Closed warksit closed 7 years ago

warksit commented 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?

warksit commented 7 years ago

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());