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

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

Billing Type

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