Skip to content

marnick-s/directus9-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Directus 9 SDK for Laravel

This package makes it easier to use alantiller/directus-php-sdk with Laravel.

Just install the package by running

composer require marnick-s/directus9-laravel

and put this in your .env:

DIRECTUS_URL=https://directus.example.com
DIRECTUS_ACCESS_TOKEN=your-static-access-token-here

DIRECTUS_ACCESS_TOKEN is optional.

Then, you can use it like this:

$api = new Directus();
$posts = $api->get_items('posts');

or, you can use the helper function:

$posts = directus()->get_items('posts');

See this readme for all the available methods.