Plans
@if (auth()->user()->role == 'Accounts')
@else
Add New Plan
@endif
Name |
Product |
Speed |
Devices |
Duration |
Monthly Charges |
Installation Charges |
Revenue |
Action |
@foreach ($plan as $item)
{{ $item->plan_name }} |
{{ $item->product_type }} |
{{ $item->speed }} |
{{ $item->devices }} |
{{ $item->contract }} |
{{ $item->monthly_charges }} |
{{ $item->installation_charges }} |
{{ $item->revenue }} |
@if (auth()->user()->role == 'Accounts')
@else
{{ Form::open(['method' => 'delete', 'route' => ['elife.destroy', $item->id]]) }}
{{ Form::submit('Delete', ['class' => 'btn btn-danger']) }}
{{ Form::close() }}
@endif
|
@endforeach
Name |
Speed |
Devices |
Duration |
Monthly Charges |
Installation Charges |
Revenue |
Action |