Examples of code I've written in PHP, Javascript, SCSS, etc.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- <?php
-
- namespace App\Providers;
-
- use Illuminate\Support\Facades\Broadcast;
- use Illuminate\Support\ServiceProvider;
-
- class BroadcastServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap any application services.
- *
- * @return void
- */
- public function boot()
- {
- Broadcast::routes();
-
- require base_path('routes/channels.php');
- }
- }
|