@extends('layouts.app') @section('title', __('Master Dashboard')) @section('content')
@if(Auth::user()->role == 'master') @include('layouts.master-left-menu') @elseif(Auth::user()->role == 'agent') @include('layouts.agent-left-menu') @endif
@include('schoolpayment.top-menu')
Select a plan for your subscription:
@if (count($pricings)>0) @foreach ($pricings as $key=>$pricing) @if($pricing->country=='Bangladesh') @php $cs='৳'; @endphp @else @php $cs='$';@endphp @endif

{{$pricing->title}}

{{subscription($pricing->subsMonth)}} {{$cs}} {{$pricing->price}}
  • {!!nl2br($pricing->details)!!}
Renew Now
@endforeach @else @include('schoolpayment.countdown') @endif
@push('script') @endpush @endsection