@extends('backend.admin-master') @section('site-title') {{__('Price Plan')}} @endsection @section('style') @endsection @section('content')

{{__('Price Plan Items')}}

@php $b=0; @endphp @foreach($all_price_plan as $key => $plan)
@foreach($plan as $data) @php $img_url =''; @endphp @endforeach
{{__('ID')}} {{__('Title')}} {{__('Price')}} {{__('Category')}} {{__('Status')}} {{__('Type')}} {{__('Action')}}
{{$data->id}} {{$data->title}} {{amount_with_currency_symbol($data->price)}} {{get_price_plan_category_by_id($data->categories_id)}} @if($data->status == 'draft') {{__('Draft')}} @else {{__('Publish')}} @endif {{$data->type}}
@csrf
@php $b++; @endphp @endforeach
@endsection @section('script') @endsection