@extends('layouts.master')
@section('content')
@include('modules.carousel')
@include('modules.category')
@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
| {{ __('Date') }} |
{{ __('Content') }} |
{{ __('Thumbnail') }} |
@foreach ($downloads as $download)
@php
$product = \App\Helpers\Helper::product($download['content_id']);
@endphp
@if($product)
| {!! $download['created_at'] !!} |
{!! $product->title !!} |
|
@endif
@endforeach
{{--
| {{ __('Date') }} |
{{ __('Wrong') }} |
{{ __('Correct') }} |
{{ __('Point') }} |
@foreach ($scores as $score)
| {!! $score->dt !!} |
{!! $score->wrong !!} |
{!! $score->correct !!} |
{!! $score->total !!} |
@endforeach
| {{ __('Total Point') }} |
{{ array_sum($scores->pluck('total')->toArray()) }} |
--}}
@endsection