Framework Integration
Integration in Laravel
4k Downloads / Month
Open Source MIT License
4k Downloads / Month
Open Source MIT License
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.
Intervention Zodiac comes with Laravel facades ...
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')); });