laravel-admin
laravel-admin copied to clipboard
how to add edit and delete button in popup box?
- Laravel Version: #.#.#
- PHP Version:
- Laravel-admin: #.#.#
Description:
$grid->column('user_id', __('Details'))->modal('operations', function ($model) { $comments = $model->Operations()->take(10)->get()->map(function ($comment) { return $comment->only(['id', 'fishname', 'location', 'image']); });
return new Table(['ID', 'Fishname', 'Location', 'Image'], $comments->toArray());
});