@extends('layouts.dashboard') @section('css') @endsection @section('sub-header') {{ __('Pricing Plans') }} @endsection @section('content')
@slot('table_header') @endslot @slot('table_body') {{ __('Name') }} {{ __('Actions') }} @php $id = 0 ; @endphp @foreach($items as $mainItemId => $mainItemData )
@if(isset($mainItemData['sub_items'])&&count($mainItemData['sub_items'])) @endif {{ $mainItemData['data']['name'] }}
@foreach ($mainItemData['sub_items'] ?? [] as $subItemId => $subItemArr) {{ $subItemArr['name'] }} @endforeach
Warning: Undefined variable $id in /home/cfostools/public_html/cfostools.evoqas.com/resources/views/admin/pricing-plans/index.blade.php on line 357
@endforeach @endslot
{{--
--}} {{--
--}} @endsection @section('js') @endsection