Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.06 KB

2-Configuration.md

File metadata and controls

44 lines (31 loc) · 1.06 KB

2. Configuration

Table of contents

  1. Installation and Setup
  2. Configuration
  3. Usage
<?php

return [

    /* -----------------------------------------------------------------
     |  Template
     | -----------------------------------------------------------------
     */

    'template'  => [

        'default'   => Arcanedev\Breadcrumbs\Breadcrumbs::DEFAULT_TEMPLATE,

        'supported' => [
            // Twitter Bootstrap
            'bootstrap-3'  => 'breadcrumbs::bootstrap-3',
            'bootstrap-4'  => 'breadcrumbs::bootstrap-4',
            'bootstrap-5'  => 'breadcrumbs::bootstrap-5',

            // Zurb Foundation
            'foundation-5' => 'breadcrumbs::foundation-5',
            'foundation-6' => 'breadcrumbs::foundation-6',
        ],

    ],

    /* -----------------------------------------------------------------
     |  Route
     | -----------------------------------------------------------------
     */

    'home-route'    => 'public::home',

];