This commit is contained in:
2025-12-28 12:16:05 +05:45
commit 7c46ec6731
3358 changed files with 467149 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
$currentUrl = url('/');
$currentUrl = $currentUrl . '/';
$bannerUrl = ($page->banner !== $currentUrl) ? $page->banner : setting('banner');
?>
<!--Page Header Start-->
<section class="page-header">
<div class="page-header__bg" style="background-image: url('<?php echo e($bannerUrl); ?>');"></div>
<div class="container">
<div class="page-header__inner">
<div class="thm-breadcrumb__box">
<ul class="thm-breadcrumb list-unstyled">
<li><a href="<?php echo e(route('home')); ?>">Home</a></li>
<li><span>-</span></li>
<li><?php echo e($page->title); ?></li>
</ul>
</div>
<h2><?php echo e($page->title); ?></h2>
</div>
</div>
</section>
<!--Page Header End-->
<?php /**PATH D:\installed\xampp\htdocs\bib\Consultancy-CCMS\resources\views/client/rohini/pages/partials/breadcrumb.blade.php ENDPATH**/ ?>