PHP code example of abruno / unipvlectures

1. Go to this page and download the library: Download abruno/unipvlectures library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

abruno / unipvlectures example snippets



  'providers' => [
   
   // other service providers
   
   /*
   * Package Service Providers...
   */
   UnipvLectures\Providers\UnipvLectureProvider::class,

   // other Service Providers...
   
   ],



  return [

    /*
    |--------------------------------------------------------------------------
    | Default Template
    |--------------------------------------------------------------------------
    |
    | This option controls the template used by the root to display data.
    |
    */

    'template' => '',

    /*
    |--------------------------------------------------------------------------
    | Urls used to retrieve Classes
    |--------------------------------------------------------------------------
    |
    | This option sets the url where to retrieve course names.
    |
    */

    'courses_urls' => [],

    /*
    |--------------------------------------------------------------------------
    | Urls used to retrieve Lecturers
    |--------------------------------------------------------------------------
    |
    | This option sets the url where to retrieve the lectures.
    |
    */

    'lectures_urls' => [],
];

console

php artisan vendor:publish --provider="UnipvLectures\Providers\UnipvLectureProvider"

config/app.php
console

php artisan migrate

config/unipvlectures.php
config/unipvlectures.php