Skip to content

Instantly share code, notes, and snippets.

View marcorieser's full-sized avatar

Marco Rieser marcorieser

View GitHub Profile
@marcorieser
marcorieser / AssetImport.php
Created October 15, 2025 05:38 — forked from aaronbushnell/AssetImport.php
A helper class to create Statamic assets out of URLs. Uses intervention/image for compression and resizing
<?php
namespace App\Helpers;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Storage;
use Intervention\Image\ImageManagerStatic as Image;
use Statamic\Contracts\Assets\AssetContainer;
use Statamic\Facades\Asset;