@extends('layouts.master')
@section('title', 'Pricing Plans')
@section('pagetitle', 'List of Plans')
@section('content')
@include('layouts.partials.messages')
All Plans
{{ $allPricingCnt }}
{{-- --}}
{{-- --}}
Name |
Role |
Price |
Duration(In days) |
Allowable Number Of Students |
Allow Alumni? |
Date Created |
Action |
@foreach($pricingPlans as $pricingPlan)
{{ !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) : "-" }} |
|
@endforeach
{!! $pricingPlans->render() !!}