@extends('layouts.master') @section('title', 'Pricing Plans') @section('pagetitle', 'List of Plans') @section('content')

Pricing Plans

All Plans

{{ $allPricingCnt }}
{{-- --}} {{-- --}}
@foreach($pricingPlans as $pricingPlan) @endforeach
Name Role Price Duration(In days) Allowable Number Of Students Allow Alumni? Date Created Action
{{ !empty(data_get($pricingPlan, 'name')) ? data_get($pricingPlan, 'name') : "-" }} {{ !empty(data_get($pricingPlan, 'role_id')) ? $roles[data_get($pricingPlan, 'role_id')] : "-" }} {{ !empty(data_get($pricingPlan, 'price')) ? data_get($pricingPlan, 'price') : "-" }} {{ !empty(data_get($pricingPlan, 'duration')) ? data_get($pricingPlan, 'duration') : "-" }} {{ !empty(data_get($pricingPlan, 'student_number')) ? data_get($pricingPlan, 'student_number') : "-" }} {{ !empty(data_get($pricingPlan, 'alumni_only')) ? "Yes" : "No" }} {{ !empty(show_date($pricingPlan->created_at)) ? show_date($pricingPlan->created_at) : "-" }}
{!! $pricingPlans->render() !!}
close
Close

Add New Plan

@include('layouts.partials.messages')
@csrf
close
Close

Edit Plan

@include('layouts.partials.messages')
@csrf
@endsection