@extends('layouts.dashboard.layout') @section('content')
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif

Protection Plan List

@foreach($data as $key => $item) @endforeach
ID Plan Name State Price (in USD) Marketing Blurb Description Action
{{$item['id']}} {{$item['plan_name']}} {{$item['state']}} {{$item['price_fp']}} {{$item['marketing_blurb']}} {{$item['description']}}    
@endsection