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;
});