@extends('layouts.dashboard-app') @section('main-content')

Hello, Welcome {{auth()->user()->name}}

IT Plans

Add New IT Plan
@foreach ($plan as $item) @endforeach
Plan Name Plan Type Amount Description Action
{{$item->name}} {{$item->product_name}} {{$item->pricing}} {{$item->description}} {{ Form::open([ 'method' => 'delete', 'route' => [ 'IT-Plan.destroy', $item->id ] ]) }} {{ Form::submit('Delete', ['class' => 'btn btn-danger']) }} {{ Form::close() }}
@endsection {{-- @@section('name') --}} {{-- @endsection --}}