Member Since 2 Months Ago
4,770 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Started a new Conversation Is It Worth Working On Homestead?
I'm kinda going crazy right here,can't set up the damm homestead to run for nothing,wasted way too many hours and the only reason i'm trying to do this is to try to get lower loading time for my app because reload of a page takes 7 seconds,insane.... I don't know if that is a normal thing with laravel or what,but wait time on files is few seconds,i don't know why,so can developing on a virtual server help me or this is just waste of time?
Started a new Conversation Why I Can't Access My Images With Asset($post->image)
Like I've been following all the steps and instructor has the same location of the images,public/storage/images and he can access them with using asset($post->image),but it doesn't make any sense to me since that makes the path of the image this, /images/nameOfTheImage and not storage/images/nameOfTheImage,but when i use the asset then it can't catch it,so i had to change the accessor to put storage/ in front of the image name while that works,I'm still confused why i can't do it the same way he has done it.
Symbolic link is all set up and he is using Laravel 7 just like I am
Replied to How Can I Decrease My Website Loading Time?
No,i'm not minifying them,truth be told i don't even know what is that and how is done,they are not really big 80kB,but the thing is 30% of the time is spent on downloading and the rest of waiting,so i'm not sure what can cause long waiting time,i'm running the app on http://127.0.0.1:8000/
Started a new Conversation How Can I Decrease My Website Loading Time?
My local files,such as css and js take over 2 seconds to load them,is there anything i can do to speed this up?
Replied to Symbolic Link Not Working
Okey,that cache is just screwing around with me way to often.Thanks for the help,works like a charm
Replied to Symbolic Link Not Working
I've tried 'default' => env('FILESYSTEM_DRIVER', 'public') and adding this line to .env file
FILESYSTEM_DRIVER=public and it is still saving images to app/images
Started a new Conversation Symbolic Link Not Working
When i'm uploading images,they are saved in app/images and not in app/public,so i've made anther link called images which then should lead me to that file
'links' => [ public_path('storage') => storage_path('app/public'), public_path('images') => storage_path('app/images'), ],
but when i use this src="{{ asset("images/{$post->image}") }}",image is not displayed eventhough it is located there
<img class="card-img-top" src="{{ asset("images/{$post->image}") }}" alt="Card image cap">
Can i then change the default folder where images are being save to app/public/images or what?