!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/school.picotech.app/public_html/storage/framework/views/   drwxr-xr-x
Free 28.26 GB of 117.98 GB (23.96%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     764f349eda9607d0340cebcebbf9a8abaaec1437.php (16.96 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |


<?php $__env->startSection('content'); ?>

<?php 

use App\Http\Controllers\CommonController;
use 
App\Models\DailyAttendances;
use 
App\Models\Classes;
use 
App\Models\Section;
use 
App\Models\Session;

$class_name Classes::find($student_data['class_id'])->name;
$section_name Section::find($student_data['section_id'])->name;
$active_session Session::where('status'1)->where('school_id'auth()->user()->school_id)->first();

$date '01 ' $page_data['month'] . ' ' $page_data['year'];

$first_date strtotime($date);

$last_date date("Y-m-t"strtotime($date));
$last_date strtotime($last_date);

$attendance_of_students DailyAttendances::whereBetween('timestamp', [$first_date$last_date])->where(['class_id' => $student_data['class_id'], 'section_id' => $student_data['section_id'], 'student_id' => auth()->user()->id])->get();

$no_of_users DailyAttendances::where(['class_id' => $student_data['class_id'], 'section_id' => $student_data['section_id'], 'student_id' => auth()->user()->id'school_id' => auth()->user()->school_id])->distinct()->count('student_id');

?>

<style>
 .custom_cs{
  padding: 0.375rem 5.75rem;

 }
 .att-custom_div {

   background-color: white !important;

  }

</style>

<div class="mainSection-title">
    <div class="row">
        <div class="col-12">
            <div
              class="d-flex justify-content-between align-items-center flex-wrap gr-15"
            >
                <div class="d-flex flex-column">
                    <h4><?php echo e(get_phrase('Daily Attendance')); ?></h4>
                    <ul class="d-flex align-items-center eBreadcrumb-2">
                        <li><a href="#"><?php echo e(get_phrase('Home')); ?></a></li>
                        <li><a href="#"><?php echo e(get_phrase('Academic')); ?></a></li>
                        <li><a href="#"><?php echo e(get_phrase('Daily Attendance')); ?></a></li>
                    </ul>
                </div>
            </div>
        </div>
    </div>
</div>

<div class="row">
    <div class="col-12">
        <div class="eSection-wrap-2">
            <div class="filter-sec">
                <!-- Filter area -->
                <form method="GET" enctype="multipart/form-data" class="d-block ajaxForm" action="<?php echo e(route('student.daily_attendance.filter')); ?>">
                  <div class="att-filter d-flex flex-wrap">
                    <div class="att-filter-option">
                      <select name="month" id="month" class="form-select eForm-select eChoice-multiple-with-remove" required>
                        <option value=""><?php echo e(get_phrase('Select a month')); ?></option>
                        <option value="Jan"<?php echo e($page_data['month'] == 'Jan' ?  'selected':''); ?>><?php echo e(get_phrase('January')); ?></option>
                        <option value="Feb"<?php echo e($page_data['month'] == 'Feb' ?  'selected':''); ?>><?php echo e(get_phrase('February')); ?></option>
                        <option value="Mar"<?php echo e($page_data['month'] == 'Mar' ?  'selected':''); ?>><?php echo e(get_phrase('March')); ?></option>
                        <option value="Apr"<?php echo e($page_data['month'] == 'Apr' ?  'selected':''); ?>><?php echo e(get_phrase('April')); ?></option>
                        <option value="May"<?php echo e($page_data['month'] == 'May' ?  'selected':''); ?>><?php echo e(get_phrase('May')); ?></option>
                        <option value="Jun"<?php echo e($page_data['month'] == 'Jun' ?  'selected':''); ?>><?php echo e(get_phrase('June')); ?></option>
                        <option value="Jul"<?php echo e($page_data['month'] == 'Jul' ?  'selected':''); ?>><?php echo e(get_phrase('July')); ?></option>
                        <option value="Aug"<?php echo e($page_data['month'] == 'Aug' ?  'selected':''); ?>><?php echo e(get_phrase('August')); ?></option>
                        <option value="Sep"<?php echo e($page_data['month'] == 'Sep' ?  'selected':''); ?>><?php echo e(get_phrase('September')); ?></option>
                        <option value="Oct"<?php echo e($page_data['month'] == 'Oct' ?  'selected':''); ?>><?php echo e(get_phrase('October')); ?></option>
                        <option value="Nov"<?php echo e($page_data['month'] == 'Nov' ?  'selected':''); ?>><?php echo e(get_phrase('November')); ?></option>
                        <option value="Dec"<?php echo e($page_data['month'] == 'Dec' ?  'selected':''); ?>><?php echo e(get_phrase('December')); ?></option>
                      </select>
                    </div>
                    <div class="att-filter-option">
                      <select name="year" id="year" class="form-select eForm-select eChoice-multiple-with-remove" required>
                        <option value=""><?php echo e(get_phrase('Select a year')); ?></option>
                        <?php for($year 2015$year <= date('Y'); $year++){ ?>
                          <option value="<?php echo e($year); ?>"<?php echo e($page_data['year'] == $year ?  'selected':''); ?>><?php echo e($year); ?></option>
                        <?php ?>

                      </select>
                    </div>
                    <div class="att-filter-option">
                      <select name="class_id" id="class_id" class="form-select eForm-select eChoice-multiple-with-remove" onchange="classWiseSection(this.value)" required>
                        <option value=""><?php echo e(get_phrase('Select a class')); ?></option>
                          <?php foreach($classes as $class): ?>
                              <option value="<?php echo e($class['id']); ?><?php echo e($student_data['class_id'] == $class['id'] ?  'selected':''); ?>><?php echo e($class['name']); ?></option>
                          <?php endforeach; ?>
                      </select>
                    </div>

                    <div class="att-filter-option">
                      <select name="section_id" id="section_id" class="form-select eForm-select eChoice-multiple-with-remove" required>
                        <option value=""><?php echo e(get_phrase('Select a section')); ?></option>
                          <?php foreach($sections as $section): ?>
                              <option value="<?php echo e($section['id']); ?><?php echo e($student_data['section_id'] == $section['id'] ?  'selected':''); ?>><?php echo e($section['name']); ?></option>
                          <?php endforeach; ?>
                      </select>
                    </div>
                    <div class="att-filter-btn">
                      <button class="eBtn eBtn btn-secondary" type="submit" ><?php echo e(get_phrase('Filter')); ?></button>
                    </div>
                    <?php if(count($attendance_of_students) > 0): ?>
                    <div class="position-relative">
                      <button
                        class="eBtn-3 dropdown-toggle"
                        type="button"
                        id="defaultDropdown"
                        data-bs-toggle="dropdown"
                        data-bs-auto-close="true"
                        aria-expanded="false"
                      >
                        <span class="pr-10">
                          <svg
                            xmlns="http://www.w3.org/2000/svg"
                            width="12.31"
                            height="10.77"
                            viewBox="0 0 10.771 12.31"
                          >
                            <path
                              id="arrow-right-from-bracket-solid"
                              d="M3.847,1.539H2.308a.769.769,0,0,0-.769.769V8.463a.769.769,0,0,0,.769.769H3.847a.769.769,0,0,1,0,1.539H2.308A2.308,2.308,0,0,1,0,8.463V2.308A2.308,2.308,0,0,1,2.308,0H3.847a.769.769,0,1,1,0,1.539Zm8.237,4.39L9.007,9.007A.769.769,0,0,1,7.919,7.919L9.685,6.155H4.616a.769.769,0,0,1,0-1.539H9.685L7.92,2.852A.769.769,0,0,1,9.008,1.764l3.078,3.078A.77.77,0,0,1,12.084,5.929Z"
                              transform="translate(0 12.31) rotate(-90)"
                              fill="#00a3ff"
                            />
                          </svg>
                        </span>
                        <?php echo e(get_phrase('Export')); ?>

                      </button>
                      <ul
                        class="dropdown-menu dropdown-menu-end eDropdown-menu-2"
                      >
                        <li>
                          <button class="dropdown-item" href="#" onclick="download_csv()" ><?php echo e(get_phrase('CSV')); ?></button>
                        </li>
                        <li>
                          <button class="dropdown-item" href="#" onclick="Export()" ><?php echo e(get_phrase('PDF')); ?></button>
                        </li>
                      </ul>
                    </div>
                    <?php endif; ?>
                  </div>
                </form>
            </div>

            <?php if(count($attendance_of_students) != 0): ?>
            <div class="att-report-banner d-flex justify-content-center justify-content-md-between align-items-center flex-wrap">
              <div class="att-report-summary order-1">
                <h4 class="title"><?php echo e(get_phrase('Attendance Report Of').' '.date('F'$page_data['attendance_date']).', '.date('Y'$page_data['attendance_date'])); ?></h4>
                <p class="summary-item"><?php echo e(get_phrase('Class')); ?>: <span><?php echo e($class_name); ?></span></p>
                <p class="summary-item"><?php echo e(get_phrase('Section')); ?>: <span><?php echo e($section_name); ?></span></p>
                <p class="summary-item">
                  <?php echo e(get_phrase('Last Update at')); ?>
                  <span>
                    <?php if ($attendance_of_students[0]->updated_at == ""): ?>
                      <?php echo e(get_phrase('not_updated_yet')); ?>

                    <?php else: ?>
                      <?php echo e(date('d-M-Y'strtotime($attendance_of_students[0]->updated_at))); ?> <br>
                    <?php endif; ?>
                  </span>
                </p>
                <p class="summary-item"><?php echo e(get_phrase('Time')); ?>
                  <span>
                    <?php if ($attendance_of_students[0]->updated_at == ""): ?>
                      <?php echo e(get_phrase('not_updated_yet')); ?>

                    <?php else: ?>
                      <?php echo e(date('h:i:s'strtotime($attendance_of_students[0]->updated_at))); ?>

                    <?php endif; ?>
                  </span>
                </p>
              </div>
              <div class="att-banner-img order-0 order-md-1">
                <img
                  src="<?php echo e(asset('assets/images/attendance-report-banner.png')); ?>"
                  alt=""
                />
              </div>
            </div>
            <!-- Attendance table -->
            <div class="att-table" id="pdf_table">
              <div class="att-title">
                 <h4 class="att-title-header"> <?php echo e(ucfirst('Student')); ?> /  <?php echo e(get_phrase('Date')); ?></h4>
                <ul class="att-stuName-items">
                  <?php

                  $attendance_of_students
=$attendance_of_students->toArray();
                  
$student_id_count 0;
                     
                  foreach(
array_slice($attendance_of_students0$no_of_users) as $attendance_of_student )     :  ?>
                    <?php $user_details = (new CommonController)->get_user_by_id_from_user_table($attendance_of_student['student_id'])->toArray();  ?>
                    <?php if(date('m', (int)$page_data['attendance_date']) == date('m'$attendance_of_student['timestamp'])): ?>
                      <?php if($student_id_count != $attendance_of_student['student_id']): ?>
                        <li class="att-stuName-item">
                          <a href="#"> <?php echo e($user_details['name']); ?></a>
                        </li>
                      <?php endif; ?>
                    <?php $student_id_count $attendance_of_student['student_id']; ?>
                    <?php endif; ?>
                  <?php endforeach;  ?>
                </ul>
              </div>
              <div class="att-content">
                <div class="att-dayWeek">
                  <div class="att-wDay d-flex">
                    <?php
                    $number_of_days 
date('m'$page_data['attendance_date']) == ? (date('Y'$page_data['attendance_date']) % 28 : (date('m'$page_data['attendance_date']) % 100 29 : (date('m'$page_data['attendance_date']) % 400 28 29))) : ((date('m'$page_data['attendance_date']) - 1) % 30 31);
                    
$month_year='-'.date('m'$page_data['attendance_date']).'-'.date('Y'$page_data['attendance_date']);

                    for (
$i 1$i <= $number_of_days$i++):
                      
$weekname=$i.$month_year;

                      
$day=date("l"strtotime($weekname));?>

                      <div><p><?php echo e(substr($day,0,1)); ?></p></div>
                    <?php endfor; ?>
                  </div>
                  <div class="att-date d-flex">
                    <?php
                    $number_of_days 
date('m'$page_data['attendance_date']) == ? (date('Y'$page_data['attendance_date']) % 28 : (date('m'$page_data['attendance_date']) % 100 29 : (date('m'$page_data['attendance_date']) % 400 28 29))) : ((date('m'$page_data['attendance_date']) - 1) % 30 31);
                    for (
$i 1$i <= $number_of_days$i++): ?>
                      <div><p><?php echo e($i); ?></p></div>
                    <?php endfor; ?>
                  </div>
                </div>
                <ul class="att-count-items">
                  <?php

                  $student_id_count 
0;

                  foreach(
array_slice($attendance_of_students0$no_of_users) as $attendance_of_student )     :  ?>
                  <li class="att-count-item">
                    <div class="att-count-stu d-flex">
                      <?php 
                      $user_details 
= (new CommonController)->get_user_by_id_from_user_table($attendance_of_student['student_id']); 

                      if(
date('m'$page_data['attendance_date']) == date('m'$attendance_of_student['timestamp'])): 

                        if(
$student_id_count != $attendance_of_student['student_id']): ?>

                          <?php for ($i 1$i <= $number_of_days$i++): ?>

                            <?php 

                            $page_data
['date'] = $i.' '.$page_data['month'].' '.$page_data['year'];

                            
$timestamp strtotime($page_data['date']);
                            
$attendance_by_id DailyAttendances::where([ 'student_id' => $attendance_of_student['student_id'], 'school_id' => auth()->user()->school_id'timestamp' => $timestamp])->first(); 
                            
?>

                            <?php if(isset($attendance_by_id->status) && $attendance_by_id->status == 1): ?>
                              
                              <div class="present"></div>

                            <?php elseif(isset($attendance_by_id->status) && $attendance_by_id->status == 0): ?>

                              <div class="absent"></div>

                            <?php else: ?>
                                <div class="att-custom_div"></div>
                            <?php endif; ?>
                          <?php endfor; ?>  
                        <?php endif; ?>

                        <?php $student_id_count $attendance_of_student['student_id']; ?>
                        <?php endif; ?>
                    </div>
                  </li>
                  <?php endforeach;  ?>
                </ul>
              </div>
            </div>
            <?php else: ?>
            <div class="empty_box center">
                <img class="mb-3" width="150px" src="<?php echo e(asset('assets/images/empty_box.png')); ?>" />
                <br>
                <span class=""><?php echo e(get_phrase('No data found')); ?></span>
            </div>
            <?php endif; ?>
        </div>
    </div>
</div>

<script type="text/javascript">
  
  "use strict";

  function classWiseSection(classId) {
    let url = "<?php echo e(route('class_wise_sections', ['id' => ":classId"])); ?>";
    url = url.replace(":classId", classId);
    $.ajax({
        url: url,
        success: function(response){
            $('#section_id').html(response);
        }
    });
  }

  function Export() {

    html2canvas(document.getElementById('pdf_table'), {
        onrendered: function(canvas) {
            var data = canvas.toDataURL();
            var docDefinition = {
                content: [{
                    image: data,
                    width: 500
                }]
            };
            pdfMake.createPdf(docDefinition).download("AttendenceReport.pdf");
        }
    });

  }

  var download_csv=function()
  {

    var month = $('#month').val();
    var year = $('#year').val();
    var role_id = '7';
    if(role_id != "" && month != "" && year != ""){

      var url='<?php echo e(route("student.dailyAttendanceFilter_csv""month,year,role_id")); ?>';
      url = url.replace('month',month).replace('year',year).replace('role_id',role_id);
      var win = window.open(url, '_blank');
      win.focus();

    } else{
      toastr.error('<?php echo e(get_phrase('Please select the required fields')); ?>');
    }


  }

</script>
<?php $__env->stopSection(); ?>
<?php 
echo $__env->make('student.navigation'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/picotech/domains/school.picotech.app/public_html/resources/views/student/attendance/daily_attendance.blade.php ENDPATH**/ ?>

:: 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.0047 ]--