PHP Classes

File: config/bookwhen.php

Recommend this page to a friend!
  Classes of Daniel Mullin   Laravel Bookwhen   config/bookwhen.php   Download  
File: config/bookwhen.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: Laravel Bookwhen
Provide an API to access Bookwhen API services
Author: By
Last change:
Date: 24 days ago
Size: 764 bytes
 

Contents

Class file image Download
<?php

return [

   
/*
    |--------------------------------------------------------------------------
    | Bookwhen API Key
    |--------------------------------------------------------------------------
    |
    | Here you may specify your Bookwhen API Key. This will be
    | used to authenticate with the Bookwhen API.
    */

   
'api_key' => env('BOOKWHEN_API_KEY'),
   
   
/*
     |--------------------------------------------------------------------------
     | Bookwhen route prefix and middleware
     |--------------------------------------------------------------------------
     |
     | Here you may specify a reoute prefix and middleware for the default
     | routes.
     */
   
   
'prefix' => 'bookwhen',
   
'middleware' => ['web']
];