File Manager Lite
Dir:
/home/codewavebd/public_html/storage/framework/views
Upload
[..]
.gitignore (14 B)
Edit
Rename
Del
0419c3b4397b677ba7ac1eda5123e17f.php (1.29 KB)
Edit
Rename
Del
068c18d520b27a8ff1423722b6312560.php (22.36 KB)
Edit
Rename
Del
0795cca15855983b141802e4fd89e461.php (4.39 KB)
Edit
Rename
Del
0e1be39358f755311010acf398697d60.php (2.08 KB)
Edit
Rename
Del
0efef382daf661bb6f19a691b7ff7d85.php (425 B)
Edit
Rename
Del
1462b7acf11f53ea5961d0454d7301ca.php (10.5 KB)
Edit
Rename
Del
15856b5c36f519621cce359f1a26e2d7.php (994 B)
Edit
Rename
Del
3b67635bef2fe6ed2e9c685916e15bc2.php (3.54 KB)
Edit
Rename
Del
3e1710ec4e21ac5493271cb2b5552cf7.php (2.85 KB)
Edit
Rename
Del
447a9b2c8727517da36054dd2c1b33d6.php (3.52 KB)
Edit
Rename
Del
47c170a650b461bf6a74b7d1e854c900.php (17.69 KB)
Edit
Rename
Del
4e7d9ccc1584239bb97a6c567233791a.php (7.92 KB)
Edit
Rename
Del
515e1f03c298c659e9db197609ba08b1.php (6.12 KB)
Edit
Rename
Del
5b3a79cc21083b027681cdf0634241fb.php (400 B)
Edit
Rename
Del
5bb7d8b9703b48b12d173f6c99a49f2d.php (381 B)
Edit
Rename
Del
682bb4034c709b5879af96472a314fc7.php (639 B)
Edit
Rename
Del
688c94919a2fc26ad1abb77981d242f2.php (8.86 KB)
Edit
Rename
Del
756242eee78ae49f4422220d2464f45c.php (438 B)
Edit
Rename
Del
77c2877faeee3a03fd997e33de1023d2.php (9.4 KB)
Edit
Rename
Del
79a45d7d99dcbaccbdb78cf22b8e5609.php (9.65 KB)
Edit
Rename
Del
7e64786483d8195d55997bc40261bd4d.php (4.16 KB)
Edit
Rename
Del
866e2c7ac5e30bd257fc6fc609436265.php (31.52 KB)
Edit
Rename
Del
89098a8dad14253bcf8af2d780582679.php (10.75 KB)
Edit
Rename
Del
9013ad9555413658bddbd2c87c49fc2f.php (4.48 KB)
Edit
Rename
Del
92d508343f9b701600cbaaecf5bac8a5.php (2.97 KB)
Edit
Rename
Del
94028580101043519a8504a8cf2b0892.php (10.07 KB)
Edit
Rename
Del
9dcc282f9339af30c47dc4137c473f69.php (8.87 KB)
Edit
Rename
Del
a9664f07548515009c37c65f764a4a82.php (3.91 KB)
Edit
Rename
Del
a9d5c1ecbb67907b49661e1272571daa.php (1.02 KB)
Edit
Rename
Del
b983cf898d4c3b2afe19f405796cd482.php (4.02 KB)
Edit
Rename
Del
be1e3f3b055d6c88ab57c2af7ec12e8b.php (30.91 KB)
Edit
Rename
Del
c23f28f2630b479d46f1d3d0c3746956.php (2.73 KB)
Edit
Rename
Del
c9cec9b4bcd4de27034c2c6796387677.php (539 B)
Edit
Rename
Del
caf541575eb0abd4baa0fad890f00979.php (7.3 KB)
Edit
Rename
Del
d0417fa560098e9ae4583d5383628327.php (10.14 KB)
Edit
Rename
Del
d8b8273e38d10585e0fdc0631e21ccf1.php (3.19 KB)
Edit
Rename
Del
db98352af20bff2623d3fe3d4aadd205.php (453 B)
Edit
Rename
Del
f3e7d0cccc04f872034d614e09e81b12.php (3 KB)
Edit
Rename
Del
f4773eb7d7bd3ec547726261dd37b967.php (4.47 KB)
Edit
Rename
Del
f9acbcec80f93d909aae9a145c283e31.php (908 B)
Edit
Rename
Del
fc040fd1a904a4d5f0a662fbde9671f7.php (4.65 KB)
Edit
Rename
Del
fcf4612410c2e786704c97a2b4595548.php (1.81 KB)
Edit
Rename
Del
Edit: fc040fd1a904a4d5f0a662fbde9671f7.php
<?php $__env->startSection('seo_title', $post->seo_title ?? ($post->title . ' | CodeWave Blog')); ?> <?php $__env->startSection('seo_description', $post->seo_meta_description ?? $post->short_description); ?> <?php $__env->startSection('seo_keywords', $post->seo_keywords); ?> <?php $__env->startSection('schemas'); ?> <!-- Breadcrumb Schema --> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "Home", "item": "<?php echo e(url('/')); ?>" },{ "@type": "ListItem", "position": 2, "name": "Blog", "item": "<?php echo e(url('/blog')); ?>" },{ "@type": "ListItem", "position": 3, "name": "<?php echo e($post->title); ?>", "item": "<?php echo e(request()->url()); ?>" }] } </script> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <!-- Hero Header --> <section class="case-study-hero"> <div class="container"> <!-- Breadcrumbs --> <nav aria-label="breadcrumb" class="mb-4"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="<?php echo e(route('home')); ?>" class="text-info text-decoration-none">Home</a></li> <li class="breadcrumb-item"><a href="<?php echo e(route('blog.index')); ?>" class="text-info text-decoration-none">Blog</a></li> <li class="breadcrumb-item active text-white" aria-current="page"><?php echo e(Str::limit($post->title, 30)); ?></li> </ol> </nav> <span class="badge bg-secondary border border-info rounded-pill px-3 py-2 text-info uppercase tracking-wider mb-3 small"> Author Article </span> <h1 class="display-4 font-heading fw-bold text-white mb-3"><?php echo e($post->title); ?></h1> <p class="text-secondary small mb-0"> <i class="bi bi-person-fill text-info me-1"></i> By <?php echo e($post->author_name); ?> • <i class="bi bi-calendar-event-fill text-info mx-1"></i> Published: <?php echo e($post->published_at ? $post->published_at->format('M d, Y') : $post->created_at->format('M d, Y')); ?> </p> </div> </section> <!-- Content --> <section class="py-5"> <div class="container py-3"> <div class="row g-5"> <!-- Article Body --> <div class="col-lg-8 case-study-content"> <?php if($post->image): ?> <img src="<?php echo e(asset('uploads/' . $post->image)); ?>" class="img-fluid rounded-4 mb-5 w-100" style="max-height: 400px; object-fit: cover;" alt="<?php echo e($post->title); ?>" loading="lazy"> <?php endif; ?> <div class="text-secondary fs-6 text-article" style="line-height: 1.8;"> <?php echo $post->content; ?> </div> </div> <!-- Sidebar --> <div class="col-lg-4"> <!-- Recent Articles --> <div class="glass-card p-4 border-info position-sticky" style="top: 100px;"> <h5 class="font-heading text-white border-bottom border-secondary pb-3 mb-3">Recent Articles</h5> <div class="list-group list-group-flush"> <?php $__empty_1 = true; $__currentLoopData = $recentPosts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $recent): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <a href="<?php echo e(route('blog.show', $recent->slug)); ?>" class="list-group-item list-group-item-action bg-transparent border-0 text-secondary py-2 d-block"> <span class="text-info small d-block mb-1"><?php echo e($recent->published_at ? $recent->published_at->format('M d, Y') : $recent->created_at->format('M d, Y')); ?></span> <h6 class="mb-0 text-white font-heading text-truncate"><?php echo e($recent->title); ?></h6> </a> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <p class="text-muted small">No other recent posts found.</p> <?php endif; ?> </div> </div> </div> </div> </div> </section> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.frontend', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home/codewavebd/public_html/resources/views/frontend/blog/show.blade.php ENDPATH**/ ?>
Simpan