can you provide a sample of the html markup and how you are referencing the images?
Laravel web server not getting assets
Hello, Im new at the laracasts forum but i have found really good answers to problems so here is my problem.
I have a laravel webpgae that 's almost done, but im stuck at displaying images at the views.
I am using Intervention to create them and upload them. I am getting the correct URL at the view. I have the images at : "public/uploads/images/posts " And the link i'm getting it's: "Localhost:8000/uploads/images/posts/12345785.jpg"
I am usiing the artisan serve command as the webserver.
I have passed the laravel folder at my wamp server www dir and the images work, im not interested at using wamp or homestead so please help me with the artisan server.
< img src="{{ asset('uploads/images/posts/1456814127.jpg') }}" / >
< img src="{{ URL::to('/uploads/images/posts/'.$post->post_image) }}" >
I even tried Public_path() but didnt work.
everything works on the wamp server but not at the artisan server. I not shure why you need to see the code. I am saying that has to be at the artisan server config.
Please or to participate in this conversation.