1. Go to this page and download the library: Download iivannov/larasquare library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// get venue photos
$response = Larasquare::request("venues/$venueId/photos")
// get details about a tip,
$response = Larasquare::request("tips/$tipId")
//Laravel
$venues = Larasquare::venues($query);
$venues = Larasquare::venue($venueId);
// get suggestion @see https://developer.foursquare.com/docs/venues/suggestcompletion
$venues = Larasquare::suggest($searchQuery);
// get trending @see https://developer.foursquare.com/docs/venues/trending
$venues = Larasquare::trending($searchQuery);