justraviga/laravel-pexels

Pexels API client for Laravel
12,164 5
Install
composer require justraviga/laravel-pexels
Latest Version:0.1.8
PHP:^7.4|^8.0
License:MIT
Last Updated:Feb 21, 2024
Links: GitHub  ·  Packagist
Maintainer: DeDmytro

Laravel Pexels

Provides access to Pexels API for Laravel projects

Stable Version Unstable Version Total Downloads License

Table of contents

Installation

To get the latest version of Laravel Pexels, simply require the project using Composer:

$ composer require justraviga/laravel-pexels

Or manually update require block of composer.json and run composer update.

{
    "require": {
        "justraviga/laravel-pexels": "^0.1"
    }
}

Using

use JustRaviga\Pexels\Clients\PhotoApiClient;
use JustRaviga\Pexels\Facades\Pexels;

$client = new PhotoApiClient(); // Good for controller method/artisan command handle()/job handle() dependency injection
// OR
$client = Pexels::photos();

$response = $client->search('cats');

foreach ($response->photos as $photo){
    $photo->width;
    $photo->height;
    $photo->url;
    $photo->src->medium;
}

Related Packages

polokij/laravel-vault-env

Hashicorp Vault client for Laravel with possibility set the env variables from V...

5,046 4
torann/api-client

A reusable base API client for use with remote services.

759 4
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
laravel-ja/laravel

The Laravel Framework.

5,667 17