Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/cms.ncriptech.com/resources/views/student/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
@extends('student.layouts.master') @section('title', $title) @section('page_css') <!-- Full calendar css --> <link rel="stylesheet" href="{{ asset('dashboard/plugins/fullcalendar/css/fullcalendar.min.css') }}"> @endsection @section('content') <!-- Start Content--> <div class="main-body"> <div class="page-wrapper"> <!-- [ Main Content ] start --> <div class="row"> @php function field($slug){ return \App\Models\Field::field($slug); } @endphp @if(field('panel_assignment')->status == 1) <div class="col-sm-12 col-lg-12"> <div class="card"> @if(isset($assignments)) <div class="card-header"> <h5>{{ trans_choice('module_assignment', 2) }}</h5> </div> <div class="card-block"> <!-- [ Data table ] start --> <div class="table-responsive"> <table class="display table nowrap table-striped table-hover" style="width:100%"> <thead> <tr> <th>{{ __('field_title') }}</th> <th>{{ __('field_subject') }}</th> <th>{{ __('field_status') }}</th> </tr> </thead> <tbody> @foreach( $assignments as $key => $row ) @if($row->assignment->status == 1) <tr> <td> <a href="{{ route('student.assignment.show', $row->id) }}">{!! str_limit($row->assignment->title ?? '', 50, ' ...') !!}</a> </td> <td>{{ $row->assignment->subject->code ?? '' }}</td> <td> @if( $row->attendance == 1 ) <span class="badge badge-pill badge-success">{{ __('status_submitted') }}</span> @else <span class="badge badge-pill badge-primary">{{ __('status_pending') }}</span> @endif </td> </tr> @endif @endforeach </tbody> </table> </div> <!-- [ Data table ] end --> </div> @endif </div> </div> @endif </div> <div class="row"> <div class="col-xl-8 col-md-8 col-sm-12"> <div class="card"> <div class="card-header"> <h5>{{ trans_choice('module_calendar', 2) }}</h5> </div> <div class="card-block"> <!-- [ Calendar ] start --> <div id='calendar' class='calendar'></div> <!-- [ Calendar ] end --> </div> </div> </div> <!-- [Event List] start --> <div class="col-xl-4 col-md-4 col-sm-12"> <div class="card statistial-visit"> <div class="card-header"> <h5>{{ __('upcoming') }} {{ trans_choice('module_event', 1) }}</h5> </div> <div class="card-block"> @foreach($latest_events as $key => $latest_event) @if($key <= 9) <p> <mark style="color: {{ $latest_event->color }}"> <i class="fas fa-calendar-check"></i> {{ $latest_event->title }} </mark> <br> <small> @if(isset($setting->date_format)) {{ date($setting->date_format, strtotime($latest_event->start_date)) }} @else {{ date("Y-m-d", strtotime($latest_event->start_date)) }} @endif @if($latest_event->start_date != $latest_event->end_date) <i class="fas fa-exchange-alt"></i> @if(isset($setting->date_format)) {{ date($setting->date_format, strtotime($latest_event->end_date)) }} @else {{ date("Y-m-d", strtotime($latest_event->end_date)) }} @endif @endif </small> </p> @endif @endforeach </div> </div> </div> <!-- [Event List] end --> </div> <!-- [ Main Content ] end --> </div> </div> <!-- End Content--> @endsection @section('page_js') <!-- Full calendar js --> <script src="{{ asset('dashboard/plugins/fullcalendar/js/lib/moment.min.js') }}"></script> <script src="{{ asset('dashboard/plugins/fullcalendar/js/lib/jquery-ui.min.js') }}"></script> <script src="{{ asset('dashboard/plugins/fullcalendar/js/fullcalendar.min.js') }}"></script> <script type="text/javascript"> // Full calendar $(window).on('load', function() { "use strict"; $('#calendar').fullCalendar({ header: { left: 'prev,next', center: 'title', right: 'today' }, defaultDate: '@php echo date("Y-m-d"); @endphp', editable: false, droppable: false, events: [ @php foreach($events as $key => $row){ echo "{ title: '".$row->title."', start: '".$row->start_date."', end: '".$row->end_date."', borderColor: '".$row->color."', backgroundColor: '".$row->color."', textColor: '#fff' }, "; } @endphp ], }); }); </script> @endsection