improve plugin store

This commit is contained in:
xiaomlove
2025-05-05 18:24:17 +07:00
parent 5b71976624
commit fb88455323
15 changed files with 282 additions and 55 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Support;
/**
* Trait StaticMake
*/
trait StaticMake
{
public static function make(): static
{
return app(static::class);
}
}