<div class="flex items-center space-x-2 text-sm text-gray-400">
    <a href="<?php echo e(url('admin')); ?>" class="hover:underline"><?php echo e(trans('menu.dashboard')); ?></a>
    <?php if(isset($breadcrumb) && is_array($breadcrumb)): ?>
        <?php foreach($breadcrumb as $crumb): ?>
            <span>/</span>
            <a href="<?php echo e($crumb['url'] ?? '#'); ?>" class="hover:underline"><?php echo e($crumb['title']); ?></a>
        <?php endforeach; ?>
    <?php endif; ?>
</div>
