nasrulhazim
7/10/2018 - 9:53 AM

Include Breadcrumb Registration Files from A Directory

Include Breadcrumb Registration Files from A Directory

<?php

// Add this at the end of your breadcrumb file
// you may use this approach for other route file - console, api and web
collect(glob(base_path('/routes/breadcrumbs/*.php')))
    ->each(function ($path) {
        require $path;
    });