PHP code example of astrogoat / promobar

1. Go to this page and download the library: Download astrogoat/promobar library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

astrogoat / promobar example snippets




namespace App\Promobar\Types;

use Astrogoat\Promobar\Types\PromobarType;

class PopupType extends PromobarType
{
    public function renderSettings() : string
    {
        return 'promobar.settings';
    }

    public function renderComponent() : string
    {
        return 'promobar.component';
    }
}

<div>
    <span class="md:hidden">{{ $payload['content_mobile'] ?? '' }}</span>
    <span class="hidden md:flex">{{ $payload['content_desktop'] ?? '' }}</span>
</div>

use App\Promobar\Types\PopupType;

$this->callAfterResolving('Astrogoat\\Promobar\\Promobar', function ($promobar) {
    $promobar->addType(key: 'popup', type: PopupType::class);
});