Skip to content

Tag: laravel-blade

Scroll up for each article

I have a list of articles on my page, and starting with the second article there should be a scroll up button. The question is how to do it correctly. Here is my code php.blade js Now my code adds a scroll button for each new blog, but it works only for the first one, maybe this Scroll up code

Using blade components and javascript

I’m using Laravel, and I’m trying to use javascript to fill a list of users. The problem is that each entry of the list is based on a view, which I made in a Blade component: pro_list_entry.blade.php: Then I would like to feed all those components to the list using Javascript: … After a litt…