Sorry, no results were found for this search.

You are viewing the documentation for Intervention Zodiac v6. This version is in an early beta stage. Use stable in production environments.

Explore how to integrate Intervention Zodiac with the Laravel framework. Learn to set up configuration files, select drivers and leverage features like auto-orientation, decoding animations, and blending color.

Laravel

Intervention Zodiac comes with Laravel facades ...

Static Facade Interface

This package also integrates access to the central entry point Intervention\Zodiac\Calculator::class, via a static facade.

The following code example shows how to calculate a zodiac sign via the zodiac facade in a Laravel application.

use Illuminate\Http\Request;
use Intervention\Zodiac\Laravel\Facades\Zodiac;

Route::get('/', function (Request $request) {
    $sign = Image::western()->fromString($request->input('date'));
});
Edit