@extends('layouts.master') @section('title') {{ __('subscription') }} @endsection @section('content')

{{ __('registration') }}

{{ $data['registration'] }}

{{ __('active') }}

{{ $data['active'] }}

{{ __('deactivate') }}

{{ $data['deactivate'] }}

{{ __('over_due') }}

{{ $data['over_due'] }}

{{ __('unpaid') }}

{{ $data['unpaid'] }}

{{ __('paid') }}

{{ $data['paid'] }}

{{ __('list') . ' ' . __('subscription') }}

{!! Form::select( 'status', [ '0' => __('all'), 'Current Cycle' => __('current_cycle'), 'Paid' => __('paid'), 'Over Due' => __('over_due'), 'Failed' => __('failed'), 'Pending' => __('pending'), 'Next Billing Cycle' => __('next_billing_cycle'), 'Unpaid' => __('unpaid'), 'Bill Not Generated' => __('bill_not_generated'), ], null, ['class' => 'form-control', 'id' => 'status'], ) !!}
{{ __('id') }} {{ __('no.') }} {{ __('logo') }} {{ __('school_name') }} {{ __('plan') }} {{ __('bill_generate_date') }} {{ __('bill_due_date') }} {{ __('bill_amount') }}({{ $settings['currency_symbol'] }}) {{ __('status') }} {{ __('action') }}
{{-- Change billing cylce --}} {{-- Change bill due date --}} {{-- Update current plan --}}
@endsection