@extends('layouts.instructor') @section('breadcrumb')

Hey, {{ $name ?? '' }} student

@endsection @section('content')
{{-- status box --}}
{{ __('Total Sign') }} {{-- ({{__('This Month')}}) --}}
{{ $total_course ?? 0 }} {{-- @if (get_currency_placement() == 'after') {{ number_format(@$total_earning_this_month, 2) }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ number_format(@$total_earning_this_month, 2) }} @endif --}}
{{ __('Action required') }}
{{ $total_pdf ?? 0 }}
{{ __('Waiting For Others') }}
{{ $total_video ?? 0 }}
{{-- uplaod box --}} {{-- free user --}}
{{ __('') }}
@csrf
{{--
{{ __('Sale Statistics') }}
--}}
{{-- paid user --}}
{{-- certificate list table --}}
{{-- checkbox --}}

{{-- --}}

{{-- --}}
{{-- jquery datatable --}}
@if (isset($uploaded_files)) @foreach ($uploaded_files as $k => $file) @php $is_signed = false; $meta = json_decode($file->meta_data, true); foreach ($meta as &$m) { if (str_contains(strtolower(auth()->user()->name), strtolower($m['name']))) { $m['current_user'] = true; if (isset($m['is_signed']) && $m['is_signed'] != '0') { $is_signed = true; } } } @endphp @endforeach @endif
{{ __('SL') }} {{ __('Is Signed') }} {{ __('Get Certificate') }} {{ __('Sign Request') }} {{ __('Download') }} {{ __('File Name') }} {{ __('File Size') }} {{ __('Uploaded At') }}
{{ $k + 1 }} {{-- api hit er por status dore check korte hobe --}} @if ($file->is_signed === 1) @else @endif @if ($file->uploaded_by == auth()->id()) Get Certificate @endif @if (isset($app_token) || !empty($app_token)) Sign Document @endif @if ($file->uploaded_by == auth()->id() && $file->is_signed != 0) Download @endif {{ $file->file_name_original }} {{ ceil($file->file_size / 1024) }} KB {{ date('d-m-Y h:i:s A', strtotime($file->created_at)) }}
@endsection @push('style') {{-- checkbox css --}} @endpush @push('script') {{-- --}} @stack('style') {{-- --}} @endpush