Oh wow i didn't know about Request::segment. That is so useful! Keep up the great work!
@vtvvnha22307 жыл бұрын
i am a new learner, so i learn a lot from your channel for starting point
@raymondmichael49877 жыл бұрын
That's awesome bro, you make coding look and feel sooooooo easy, On the creating post staffs, my suggestion, it'll be cool to post an image accompanied by short versions of descriptions (with a read more thing off course).. It's just my suggestion Keep it up bro
@StephanieLoveful7 жыл бұрын
Raymond Michael dude. just combine the lessons from his eariler tutorial and travesty medias , and u can make it yourself.
@pastuh7 жыл бұрын
Thanks for help, i will watch series to further improve my website. Just yesterday launched web (got information from simple and advanced blog series) :) Now adding content. Im soo happy everything works so perfect.
@juanrincon65767 жыл бұрын
hmm you make everything look simple, very simple actually.. I love JS but i'm too noob and Laravel too. Thank you for the video!
@DenTechGaming7 жыл бұрын
CSS Grid?
@stusmith9517 жыл бұрын
these are great videos by the way learning loads and the mistakes left in are great as we see how to fix them. you waffle a bit but that's good for beginners :)
@bloggervista7 жыл бұрын
As this is advanced blog/cms can we go with tests?
@inigofernandezgarcia7 жыл бұрын
Hello Señor, I been subscribed since really long time and I did learn a lot form you.. I wanted to say thanks.. Is possible to do a Demo of a vue2 GridTable (Editable Table) .. I see many examples around and all of them are too complicate to really see how they work. BTW I did miss This Week in Web of this week.. :)
@Sinrise6 жыл бұрын
I'm having so much trouble with this. I copied the code exactly but when I click the slide menu button it adds them immediately removes the is-active classes! I put a debugger line in and I can see it setting the class, then immediately removing it. HELP!
@JinTwisT7 жыл бұрын
Hello my favorite code teacher, tell me is it possible to make a course of how to handle and optimize big data. Create app with laravel and put into database large amount of data and find the best ways to handle it and keep application lean and fast?
@bloggervista7 жыл бұрын
thank you :)
@anasu80407 жыл бұрын
please make css grid tutorial
@flaviusconstantin7 жыл бұрын
Wich Atom Package is it, that shows you wich folder/file is updated currently? (green, orange ..) ps. thanks :-)
@mhamzajutt967 жыл бұрын
Kindly solve my issue, I am using your easynav plugin , it installs fine and it give no errors at all, but it doesn`t show to active menu
@JacurtisTutorials7 жыл бұрын
Is it adding the "active" class? Have you added CSS styling for the "active" class? You can override the class that it outputs by creating the config file.
@mhamzajutt967 жыл бұрын
I am using active but when is changed it to is-active in the whole project it works fine now Thanks 😀
@AlcidesMurilloSEO_PPC7 жыл бұрын
once the app is on mobile the left menu hides however the managment-area does not take advantage of the new real state when the left menu is gone. I had added this code to the manage.scss file to take advantage of that. `.management-area { top: 4rem; right: 0; @include desktop { position: absolute; left: 200px; } }` Hope it helps!!
@voneatpen60607 жыл бұрын
Anyone get navbar-burger work in mobile screen?
@JacurtisTutorials7 жыл бұрын
We need to add this in a future video. You need to add some JS
@voneatpen60607 жыл бұрын
I fixed this with
@juanrincon65767 жыл бұрын
Almost 2k views and just 78 thumbs up? Come on guys are you serious?... It must be almost 2k thumbs up ..
@pappasgeorgios53485 жыл бұрын
Get navbar-burger work, Bulma v0.7.4 1. in public/js make a new .js file (example custom.js) and write this function: (function() { var burger = document.querySelector('.burger'); var nav = document.querySelector('#'+burger.dataset.target); burger.addEventListener('click', function(){ burger.classList.toggle('is-active'); nav.classList.toggle('is-active'); }); })(); 2. include this file (custom.js) into layouts/app.blade.below: ............ ............ @yield('content') p.s. my Navbar-burger looks like this: .......... ..........