@extends('admin/layouts/default') {{-- Page title --}} @section('title') Plans @parent @stop @section('content')

Plans

Plans

@foreach ($plans as $plan) @if($plan->item_type == 1) @else @endif @endforeach
Plan Name Plan Type Items Count Plan Price Valid Upto (Months) Actions
Plan Name Plan Type Items Count Plan Price Valid Upto (Months) Actions
{{ $plan->plan_name }}ImageVideo{{ $plan->item_count }} {{ $plan->price }} {{ $plan->valid_upto_months }}
  • {!! Form::open([ 'class'=>'delete', 'url' => route('admin.plans.destroy', $plan->plan_id), 'method' => 'DELETE', ]) !!} {!! Form::close() !!}
@stop