I want to have something like Twitter has when you hover over a tweet author and display a nice popover with the author details like shown in the attached image.
I created a new blade component php artisan make:component PopoverProfile and passed the post(imp) variable to it:
/**
* Create a new component instance.
*
* @return void
*/
public function __construct(Imp $imp)
{
$this->imp = $imp;
}```
Then on the `popover-profile.blade.php` I have the following code (next message).