관리-도구
편집 파일: 32f2b3fe0854bc809eacabe14c1bb642.php
<?php $route = '#'; if (isAdmin()) { $route = route('admin.dashboard'); } if (isInstructor()) { $route = route('instructor.dashboard'); } if (isOrganization()) { $route = route('organization.dashboard'); } if (isStudent()) { $route = route('student.dashboard'); } $backUrl = $backUrl ?? ''; $pageTo = $pageTo ?? ''; ?> <div class="col-span-full"> <div class="card"> <div class="flex items-center justify-between gap-4 flex-wrap"> <div class="shrink-0"> <div class="flex items-center gap-4"> <?php if($backUrl): ?> <a href="<?php echo e($backUrl); ?>" class="size-7 flex-center bg-gray-200 text-gray-500 dark:bg-dark-icon dark:text-dark-text rounded-md dk-theme-card-square"> <i class="ri-arrow-left-line text-inherit text-[18px]"></i> </a> <?php endif; ?> <?php if($title): ?> <h5 class="card-title"><?php echo e(translate(ucfirst($title))); ?></h5> <?php endif; ?> </div> <ul class="text-sm flex items-center flex-wrap gap-1.5 *:flex-center *:gap-1.5 leading-none text-gray-900 mt-3"> <li class="text-primary-500 after:font-remix after:flex-center after:font-normal after:text-gray-900 after:size-auto after:content-['\f2e5'] rtl:after:content-['\f2e3'] after:translate-y-[1.4px] last:after:hidden [&.current-page]:text-gray-500 dark:text-dark-text"> <a href="<?php echo e($route ?? '#'); ?>"><?php echo e(translate('Dashboard')); ?></a> </li> <?php if($pageTo): ?> <li class="text-primary-500 after:font-remix after:flex-center after:font-normal after:text-gray-900 after:size-auto after:content-['\f2e5'] rtl:after:content-['\f2e3'] after:translate-y-[1.4px] last:after:hidden [&.current-page]:text-gray-500 dark:[&.current-page]:text-dark-text-two current-page"> <?php echo e(translate($pageTo)); ?> </li> <?php endif; ?> </ul> </div> <?php if(isset($actionRoute)): ?> <div class="flex items-center gap-3"> <a href="<?php echo e($actionRoute ?? '#'); ?>" class="btn b-outline btn-primary-outline btn-sm dk-theme-card-square"> <i class="ri-add-line text-inherit"></i> <?php echo e(translate('Add new')); ?> </a> </div> <?php endif; ?> </div> </div> </div> <?php /**PATH /home/inprosysltd/public_html/edulab.inprosysltd.com/Modules/LMS/resources/views/portals/components/admin/breadcrumb.blade.php ENDPATH**/ ?>