2022-07-30 11:25:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Facades;
|
|
|
|
|
|
|
|
use App\Services\GroupService;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
|
|
|
class Groups extends Facade
|
|
|
|
{
|
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return GroupService::class;
|
|
|
|
}
|
2022-11-22 15:15:52 +01:00
|
|
|
}
|