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

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

Plans

@if (auth()->user()->role == 'Accounts') @else Add New Plan @endif
@foreach ($plan as $item) @endforeach
Name Plan Category Local Minutes Flexible Minutes Data Free Minutes Monthly Payments Duration Number Allowed Revenue Action
{{ $item->plan_name }} {{ $item->plan_category }} {{ $item->local_minutes }} {{ $item->flexible_minutes }} {{ $item->data }} {{ $item->free_minutes }} {{ $item->monthly_payment }} {{ $item->duration }} {{ $item->number_allowed }} {{ $item->revenue }} @if (auth()->user()->role == 'Accounts') @else @endif
@endsection {{-- @@section('name') --}} {{-- @endsection --}}