Support the ongoing development of Laravel.io →
Database Testing

Hi guys! I currently have a problem where I get stuck. I want to when you call example.com/xxx.jpg, the image file is displayed, unfortunately it does not work so well.

Route::get('/(:any)', function($image)
{
	$get = Images::where('image', $image)->count();
	if($image)
	{
		echo '<img src="http://i.shotly.net/'.$get->image.'" />"';
	} else
	{
		
	}
});

What did I do wrong? :S

WbR meikelsmirnow

Last updated 2 years ago.
0

Maybe count first and verify there is a count then:

$get = Images::where("image", "=",  $image)->get();
Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.