This package can get street view image from any address to GPS coordinates, location or panorama ID using Google's street view service. Here's a quick example:
$client = new \GuzzleHttp\Client();
$streetView = new \Defro\Google\StreetView\Api($client);
$imgUrl = $streetView
->setApiKey('YOUR_GOOGLE_API_KEY')
->getImageUrlByLocation('Eiffel tower, Paris');
echo '<img src="' . $imgUrl . '" />';
Read how to install, use this package, customize photo location to display on documentation page.
The MIT License (MIT). Please see license file for more information.