Replaced Moment with Carbon #84

Merged
Ghost merged 148 commits from develop into beta 2022-09-22 05:53:36 +02:00
4 changed files with 39 additions and 0 deletions
Showing only changes of commit 65220fe06a - Show all commits

View file

@ -0,0 +1,6 @@
<?php
function sorter()
{
echo("BITCH WE ARE SORTING");
}

View file

@ -0,0 +1,6 @@
<?php
function tester()
{
echo("IT WORKS");
}

View file

@ -0,0 +1,26 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class FipamoHelperProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
foreach (glob(app_path() . '/Helpers/*.php') as $filename) {
require_once $filename;
}
}
/**
* Bootstrap services.
*/
public function boot(): void
{
//
}
}

View file

@ -169,6 +169,7 @@ return [
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
App\Providers\FipamoServiceProvider::class,
App\Providers\FipamoHelperProvider::class,
])->toArray(),
/*