tozogluburak/laravel-cdn-helper

A Laravel package for CDN integration

v1.8.0 2024-08-21 02:15 UTC

This package is auto-updated.

Last update: 2025-05-21 04:09:45 UTC


README

This package provides a simple way to integrate CDN support into your Laravel application.

Installation

  1. Add the package to your project via Composer:

    composer require tozogluburak/laravel-cdn-helper:^1.8
  2. Publish the package's configuration file:

    php artisan vendor:publish --provider="tozogluburak\CdnHelper\Discovery\CdnHelperDiscovery"
  3. After installation, the package will automatically add the CDN helper function to your project.

Configuration

The standard asset() function will be called if no CDN URLs are defined in the ./config/app.php config file.

Define the CDN URLs in the ./config/app.php file:

Add the following configuration to your app.php file:

<?php

return [
    /*
    |--------------------------------------------------------------------------
    | Application CDN domains
    |--------------------------------------------------------------------------
    |
    | Specify different domains for your assets.
    |
    */
    'cdn' => [
        "cdn.example.com" => "",
    ],
];