first commit

This commit is contained in:
f4ilji
2024-09-19 16:06:49 +05:00
commit b686638a39
1664 changed files with 428174 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php
namespace App\Providers;
use App\Helpers\ByteConverter;
use Illuminate\Support\ServiceProvider;
class ByteConverterServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->bind('byteconverter', function () {
return new ByteConverter();
});
}
public function boot()
{
//
}
}