@extends('master_layout.app') @section('content')

Subscription Plans

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@foreach ($subscription_list as $list) @endforeach
Plan Name Monthly Quarterly Half Yearly Yearly Action
{{ $list->plan_name }} ${{ $list->monthly_offer_price }} ${{ $list->quaterly_offer_price }} ${{ $list->halfyearly_offer_price }} ${{ $list->yearly_offer_price }}
{{-- View --}} @if (isset($modPer) && $modPer->edit == 1) Edit @endif @if (isset($modPer) && $modPer->delet == 1) {{-- Delete --}} @endif
@endsection