File: /home/bdedition/public_html/core/resources/views/templates/basic/news/print.blade.php
<!DOCTYPE html>
<html lang="bn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>সংবাদ প্রতিবেদন</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Noto Sans Bengali', sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
}
.container {
position: relative;
max-width: 850px;
margin: 0px auto;
background: #fff;
padding: 20px;
border-radius: 0;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 20px;
border-bottom: 10px double #000;
}
.header img {
max-width: 250px;
}
.category {
color: #007bff;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
}
.title {
font-size: 28px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.meta {
color: #777;
font-size: 15px;
margin-bottom: 15px;
}
.news-image {
width: 100%;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}
.content {
font-size: 18px;
line-height: 1.8;
color: #222;
}
.barcode {
text-align: center;
margin-top: 20px;
position: absolute;
top: 0;
right: 2%;
}
.footer {
text-align: center;
padding-top: 25px;
border-top: 2px solid #ddd;
font-size: 14px;
color: #555;
}
.footer img {
margin-top: 10px;
max-width: 140px;
}
.print-btn {
display: block;
width: 160px;
margin: 25px auto;
padding: 12px;
background: #007bff;
color: #fff;
font-size: 16px;
font-weight: bold;
text-align: center;
border: none;
border-radius: 6px;
cursor: pointer;
transition: 0.3s;
}
.print-btn:hover {
background: #0056b3;
}
@media print {
.print-btn {
display: none;
}
}
@media (max-width: 768px) {
.container {
width: 95%;
padding: 20px;
}
.title {
font-size: 24px;
}
.content {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<a href="{{ route('home') }}"><img src="{{ siteLogo() }}" alt="site-logo"></a>
<p>www.bdedition.com</p>
<p>(অনলাইন বাংলা নিউজ পোর্টাল)</p>
</div>
<div class="category">{{ $catInfo->name }}</div>
<div class="title">{{ __(@$news->title) }}</div>
<div class="meta">
প্রকাশিত:
@php $userInfo = App\Models\User::find($news->user_id); @endphp
@if(!empty($news->user_id))
<b>{{ $userInfo->display_name ?? '' }}</b>
@else
<b>বিডি এডিশন ডেস্ক</b>
@endif
{{ @$news->created_at->locale('bn')->translatedFormat('d F Y, h:i A') }}
</div>
@if(!empty($userInfo->image))
<img src="{{ asset('assets/images/user/profile/' . $userInfo->image) }}" class="news-image" alt="{{ __(@$news->title) }}">
@endif
<div class="barcode">{!! $qrCode !!}</div>
<div class="content">
<div class="news-banner-wrapper">
<div class="news-banner-thumb">
<img src="{{ getImage(getFilePath('news') . '/' . $news->image, getFileSize('news')) }}" class="news-image" alt="news-banner">
</div>
</div>
<div class="news-banner-content">
{!! $news->description !!}
</div>
</div>
<button class="print-btn" onclick="window.print()">🖨️ Print News</button>
<div class="footer">
<a href="{{ route('home') }}"><img src="{{ siteLogo() }}" alt="site-logo"></a>
<p>স্বত্ব © ২০২৪-২০২৫ বিডি এডিশন। সর্বস্বত্ব সংরক্ষিত।</p>
<p>সম্পাদক: রুহুল আমিন</p>
</div>
</div>
</body>
</html>