laravel-admin icon indicating copy to clipboard operation
laravel-admin copied to clipboard

how to add edit and delete button in popup box?

Open jesnagifto opened this issue 1 year ago • 0 comments

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

}); 2023-05-27

Steps To Reproduce:

jesnagifto avatar May 27 '23 09:05 jesnagifto