@extends('layouts.master') @section('content') @include('modules.carousel') @include('modules.category')
{{ __('My Account') }}
@if($service)
{{ __('Package Name') }} {!! $service->name !!}
{{ __('Package Fee') }} Tk {!! number_format($service->price + ($service->price * $service->tax), 2) !!}/{!! \App\Helpers\Helper::validity($service->validity) !!}
{{ __('Activation Date') }} {!! $history['created_at'] !!}
@endif
@foreach ($downloads as $download) @php $product = \App\Helpers\Helper::product($download['content_id']); @endphp @if($product) @endif @endforeach
{{ __('Date') }} {{ __('Content') }} {{ __('Thumbnail') }}
{!! $download['created_at'] !!} {!! $product->title !!} Thumbnail
{{--
@foreach ($scores as $score) @endforeach
{{ __('Date') }} {{ __('Wrong') }} {{ __('Correct') }} {{ __('Point') }}
{!! $score->dt !!} {!! $score->wrong !!} {!! $score->correct !!} {!! $score->total !!}
{{ __('Total Point') }} {{ array_sum($scores->pluck('total')->toArray()) }}
--}}
@endsection