mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
483 B
PHP
22 lines
483 B
PHP
<?php
|
|
|
|
namespace Resources\Views\Segments;
|
|
|
|
use App\Models\Part;
|
|
|
|
class PreloaderCircle
|
|
{
|
|
public static function onAdd(Part $part = null)
|
|
{
|
|
\Log::info('added '.$part->part.' on '.$part->segment);
|
|
}
|
|
public static function onRemove(Part $part = null)
|
|
{
|
|
\Log::info('remove '.$part->part.' on '.$part->segment);
|
|
}
|
|
public static function onMount(Part $part = null)
|
|
{
|
|
\Log::info('monted '.$part->part.' on '.$part->segment);
|
|
}
|
|
}
|