Laravel Faker – Tutorial

Laravel incorporates the faker library to work with test data in our database, in this article we will see how to use this resource Laravel Faker In its latest versions, Laravel already comes with this library, previously to install we had to do it as follows with composer composer require fzaninotto/faker Now when it comes … Read more

Laravel Amazon Ads API

Laravel 9 integrate Amazon Ads API, with the Amazon Advertising Sdk, a way to interact with amazon campaigns and products Laravel Amazon Ads API First it is necessary to install the sdk with composer, we will use the following command in a terminal composer require rovast/amazon-advertising-api-php-sdk Once the package is installed, it will be found … Read more

Laravel PostgreSQL – Tutorial

In this post we will see how to use Laravel with PostgreSQL, we will use the artisan command line and some instructions with PSQL Laravel PostgreSQL- Create Project The first thing we need is to create a project from scratch, let’s enter the following command composer create-project laravel/laravel laravel9_project Once the project is created we … Read more

Laravel 9 Sanctum Authentication

In this post we will see how to create a restful api in laravel 9 with authentication applying the sanctum package, using models, seeds, migrations, factories Laravel 9 Sanctum Authentication First we will start by creating a new project with composer the dependency manager composer create-project laravel/laravel laravel-api Once the project has been created with … Read more