@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 --}} @if (isset($day_left) && $day_left > 1 && isset($user_status) && $user_status == 'unpaid')
{{ __('') }}
@csrf
{{--
{{ __('Sale Statistics') }}
--}}
{{-- paid user --}} @elseif(isset($day_left) && $day_left == 0 && isset($user_status) && $user_status == 'paid' && isset($ekyc_check) && $ekyc_check == 1)
{{ __('') }}
@csrf
{{--
{{ __('Sale Statistics') }}
--}}
{{-- pending user --}} @elseif(isset($user_status) && $user_status == 'pending')
{{ __('Once payment is confirmed please proceed for your identity verification') }}
{{ __('Click here for identity verification') }}
@else
{{ __('Your free trial period is end.') }}
{{ __('Check Our Pricing Plan') }}
{{--
{{ __('Sale Statistics') }}
--}}
@endif
{{-- 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') }} {{ __('Add Signatory') }} {{ __('Sign Document') }} {{ __('Manipulate Link') }} {{ __('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()) {{-- --}} {{ $file->meta_data != '{}' ? 'Edit Signatory' : 'Add Signatory' }} @endif @if ($file->uploaded_by == auth()->id() && $file->meta_data != '{}') Sign Document {{-- --}} @endif @if ($file->uploaded_by == auth()->id() && $file->manipulate_link != '') Mainipulate Link @endif @if ($file->uploaded_by == auth()->id() && $file->download_link != '') 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