Files
ntspi-app/app/Ship/Providers/BroadcastServiceProvider.php
F4ilji c01016a154 Migrate backend to Porto architecture and fix minor bugs
- Fully transitioned the backend to the Porto architectural pattern
- Improved code organization and maintainability
- Fixed minor bugs and inconsistencies
2025-05-12 08:47:43 +05:00

22 lines
430 B
PHP

<?php
namespace App\Ship\Providers;
use Illuminate\Support\Facades\Broadcast;
use App\Ship\Abstracts\Providers\ServiceProvider as AbstractServiceProvider;
class BroadcastServiceProvider extends AbstractServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}