├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── open-graphy.php ├── documentation └── images │ ├── open-graphy-examples.webp │ ├── open-graphy.png │ └── screenshot-example-saasykit.png ├── resources └── views │ ├── components │ └── links.blade.php │ ├── partials │ ├── font.blade.php │ ├── js.blade.php │ └── styles.blade.php │ └── templates │ ├── nodes.blade.php │ ├── strings.blade.php │ ├── stripes.blade.php │ ├── sunny.blade.php │ └── verticals.blade.php ├── routes └── web.php └── src ├── Commands ├── ClearCache.php └── GenerateOpenGraphImage.php ├── Facades └── OpenGraphy.php ├── Http └── Controllers │ └── OpenGraphyController.php ├── ImageGenerator.php ├── OpenGraphy.php ├── OpenGraphyServiceProvider.php └── helpers.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/composer.json -------------------------------------------------------------------------------- /config/open-graphy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/config/open-graphy.php -------------------------------------------------------------------------------- /documentation/images/open-graphy-examples.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/documentation/images/open-graphy-examples.webp -------------------------------------------------------------------------------- /documentation/images/open-graphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/documentation/images/open-graphy.png -------------------------------------------------------------------------------- /documentation/images/screenshot-example-saasykit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/documentation/images/screenshot-example-saasykit.png -------------------------------------------------------------------------------- /resources/views/components/links.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/components/links.blade.php -------------------------------------------------------------------------------- /resources/views/partials/font.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/partials/font.blade.php -------------------------------------------------------------------------------- /resources/views/partials/js.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/partials/js.blade.php -------------------------------------------------------------------------------- /resources/views/partials/styles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/partials/styles.blade.php -------------------------------------------------------------------------------- /resources/views/templates/nodes.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/templates/nodes.blade.php -------------------------------------------------------------------------------- /resources/views/templates/strings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/templates/strings.blade.php -------------------------------------------------------------------------------- /resources/views/templates/stripes.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/templates/stripes.blade.php -------------------------------------------------------------------------------- /resources/views/templates/sunny.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/templates/sunny.blade.php -------------------------------------------------------------------------------- /resources/views/templates/verticals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/resources/views/templates/verticals.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Commands/ClearCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/Commands/ClearCache.php -------------------------------------------------------------------------------- /src/Commands/GenerateOpenGraphImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/Commands/GenerateOpenGraphImage.php -------------------------------------------------------------------------------- /src/Facades/OpenGraphy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/Facades/OpenGraphy.php -------------------------------------------------------------------------------- /src/Http/Controllers/OpenGraphyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/Http/Controllers/OpenGraphyController.php -------------------------------------------------------------------------------- /src/ImageGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/ImageGenerator.php -------------------------------------------------------------------------------- /src/OpenGraphy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/OpenGraphy.php -------------------------------------------------------------------------------- /src/OpenGraphyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/OpenGraphyServiceProvider.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saasykit/laravel-open-graphy/HEAD/src/helpers.php --------------------------------------------------------------------------------