Feat: Adding Concent Updates

This commit is contained in:
2026-09-09 01:12:21 +03:00
parent 9c95c0bccb
commit fb684dc97b
7 changed files with 156 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Modules\Core\Providers;
use Illuminate\Support\ServiceProvider;
class CheckoutServiceProvider extends ServiceProvider
{
public function register(): void
{
$this->mergeConfigFrom(__DIR__ . '/../../config/legal.php', 'legal');
}
}