laravel / ideas

Issues board used for Laravel internals discussions.
939 stars 28 forks source link

Making own helpers with using console #2436

Open isaeken opened 3 years ago

isaeken commented 3 years ago
artisan make:helper HelperName

is creates app\Helpers\HelperName.php

namespace ...;
class ...;
{
  public static function CustomHelper()
  {
  }
}
akbarjimi commented 3 years ago

This process is so simple that it is not needed