summaryrefslogtreecommitdiff
path: root/src/ScormPlayerServiceProvider.php
blob: c1f3369c93369d196805cd4a332f089937ab5026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php

namespace Lightscale\ScormPlayer;

use Peopleaps\Scorm\ScormServiceProvider;

class ScormPlayerServiceProvider extends ScormServiceProvider
{

    public function register()
    {
        parent::register();

        $this->mergeConfigFrom(
            __DIR__  . '/../config/scorm-player.php', 'scorm'
        );
    }

    protected function offerPublishing()
    {
        parent::offerPublishing();

       $this->publishes([
            __DIR__ . '/../database/migrations/scorm_player_improvements.php.stub' =>
                $this->getMigrationFileName('scorm_player_improvements.php'),
        ], 'migrations');

    }

    public function boot()
    {
        parent::boot();

        // Load routes
        $this->loadRoutesFrom(__DIR__ . '/../routes/web.php');

        // Load views
        $this->loadViewsFrom(__DIR__.'/../resources/views', 'scorm-player');
    }

}