How I Learned to Code – Info
How I Learned to Code – and Got a Job at Google! https://www.youtube.com/watch?v=mElVGah7Epg
How I Learned to Code – and Got a Job at Google! https://www.youtube.com/watch?v=mElVGah7Epg
$(‘.panel-collapse’).on(‘shown.bs.collapse’, function (e) {
var $panel = $(this).closest(‘.panel’);
$(‘html,body’).animate({
scrollTop: $panel.offset().top
}, 500);
});
Bootstrap accordion, scroll to top of active (open) accordion on click? https://stackoverflow.com/questions/35992900/bootstrap-accordion-scroll-to-top-of-active-open-accordion-on-click
Implementing Infinite Scroll in React and Laravel https://quantizd.com/implementing-infinite-scroll-in-laravel-and-react/
VSDC Free Video Editor animation https://www.youtube.com/watch?v=58ov_-_k8hE
How to explain object-oriented programming concepts to a 6 year old?
Hogyan magyaráznád el egy 6 évesnek az objektum orientált programozást?
https://medium.freecodecamp.org/object-oriented-programming-concepts-21bb035f7260
Why PHP is the Best Platform for Enterprise Business https://thewebtier.com/php/why-php-is-the-best-platform-for-enterprise-business/
With millions of developers around the world using PHP for web design and development, it is certainly unarguable that PHP is the best platform for enterprise business. PHP has been one of the most famous frameworks for web building due to it many features like top security, cross-platform compatibility and many other
Ben Harper, Charlie Musselwhite – I’m In I’m Out And I’m Gone
Laravel Excel Export: Formatting and Styling Cells https://laraveldaily.com/laravel-excel-export-formatting-and-styling-cells/
Writing advanced Eloquent search query filters https://m.dotdev.co/writing-advanced-eloquent-search-query-filters-de8b6c2598db
How to Test Mail Notifications in Laravel ? https://medium.com/@vivekdhumal/how-to-test-mail-notifications-in-laravel-345528917494
I was testing some feature from my side project and I came across the situation where I want to test Mail Notification means I don’t want to send actual notification , I just wanted to fake it so that I can ensure that mail is getting send at some trigger point and also I wanted to test the content of that mail.