PHP Classes

File: config/eloquent-viewable.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   config/eloquent-viewable.php   Download  
File: config/eloquent-viewable.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 2,868 bytes
 

Contents

Class file image Download
<?php

return [

   
/*
    |--------------------------------------------------------------------------
    | Eloquent Models
    |--------------------------------------------------------------------------
    */
   
'models' => [

       
/*
         * Here you can configure the default `View` model.
         */
       
'view' => [

           
'table_name' => 'views',
           
'connection' => env('DB_CONNECTION', 'mysql'),

        ],

    ],

   
/*
    |--------------------------------------------------------------------------
    | Cache Configuration
    |--------------------------------------------------------------------------
    */
   
'cache' => [

       
/*
         * Everthing will be stored under the following key.
         */
       
'key' => 'cyrildewit.eloquent-viewable.cache',

       
/*
         * Here you may define the cache store that should be used.
         */
       
'store' => env('CACHE_DRIVER', 'file'),

    ],

   
/*
    |--------------------------------------------------------------------------
    | Cooldown Configuration
    |--------------------------------------------------------------------------
    */
   
'cooldown' => [

       
/*
         * Everthing will be stored under the following key in the session.
         */
       
'key' => 'cyrildewit.eloquent-viewable.cooldowns',

    ],

   
/*
    |--------------------------------------------------------------------------
    | Ignore Bots
    |--------------------------------------------------------------------------
    |
    | If you want to ignore bots, you can specify that here. The default
    | service that determines if a visitor is a crawler is a package
    | by JayBizzle called CrawlerDetect.
    |
    */
   
'ignore_bots' => true,

   
/*
    |--------------------------------------------------------------------------
    | Do Not Track Header
    |--------------------------------------------------------------------------
    |
    | If you want to honor the DNT header, you can specify that here. We won't
    | record views from visitors with the Do Not Track header.
    |
    */
   
'honor_dnt' => false,

   
/*
    |--------------------------------------------------------------------------
    | Cookies
    |--------------------------------------------------------------------------
    |
    | This package binds visitors to views using a cookie. If you want to
    | give this cookie a custom name, you can specify that here.
    |
    */

   
'visitor_cookie_key' => 'eloquent_viewable',

   
/*
    |--------------------------------------------------------------------------
    | Ignore IP Addresses
    |--------------------------------------------------------------------------
    |
    | Ignore views of the following IP addresses.
    |
    */

   
'ignored_ip_addresses' => [

       
// '127.0.0.1',

   
],

];