The Laravel Salesforce API Client is a simple tool for interacting with salesforce APIs. It’s a laravel package and utilizes orchestral/testbench for testing the package in a laravel enviroment. Link: https://github.com/ChanningDefoe/laravel-salesforce-client Installation The package can be installed via composer by running the following command: composer require cdefoe/salesforceapi For verisons 5.4 and below, add the service […]
Adding Custom Builder and Collection Methods to Laravel Models
Laravel has a neat way of adding custom builder and collection methods to your models. This is great for a smaller model and cleaner code in your controllers. Begin with a Model Creating a Custom Builder Class Create a new class that extends the Eloquent Builder class. Add the Custom Builder to Your Model Add […]
Using Laravel with Google Drive API to Access Google Sheets
Google Drive API Setup To use the google API in your Laravel project, you need to create a new Project at the Google API Console. The steps below will guide you through the setup. Create a New Google Project. Go to “Explore and enable APIs”. Enable to Google Drive API. Go to the Credentials Tab […]