@extends('layouts.app')
@section('content')
@include('layouts.subnav')
@foreach ($monetization as $plan)
@if ($plan->name == 'Gold')
Popular
{{ $plan->name }}
₹{{ $plan->amount }}/mo
-
Description:
{{ $plan->description }}
-
Duration:
{{ $plan->duration }} days
@if ($plan->contentSets->isNotEmpty())
@foreach($plan->contentSets as $contentSet)
-
Video and sound quality:
{{ $contentSet->video_and_sound_quality }}
-
Resolution:
{{ str_replace('","', ', ', trim($contentSet->resolution, '[]"')) }}
-
Supported devices:
{{ str_replace('","', ', ', trim($contentSet->supported_devices, '[]"')) }}
-
Download devices:
{{ $contentSet->download_devices }}
-
Ads:
{{ $contentSet->no_ad }}
@endforeach
@endif
@else
{{ $plan->name }}
₹{{ $plan->amount }}/mo
-
Description:
{{ $plan->description }}
-
Duration:
{{ $plan->duration }} days
@if ($plan->contentSets->isNotEmpty())
@foreach($plan->contentSets as $contentSet)
-
Video and sound quality:
{{ $contentSet->video_and_sound_quality }}
-
Resolution:
{{ str_replace('","', ', ', trim($contentSet->resolution, '[]"')) }}
-
Supported devices:
{{ str_replace('","', ', ', trim($contentSet->supported_devices, '[]"')) }}
-
Download devices:
{{ $contentSet->download_devices }}
-
Ads:
{{ $contentSet->no_ad }}
@endforeach
@endif
@endif
@endforeach
@endsection