@extends('backend.admin-master') @section('site-title') {{__('Price Plan')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('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')}} {{__('Icon')}} {{__('Type')}} {{__('Action')}}
{{$data->id}} {{$data->title}} {{amount_with_currency_symbol($data->price)}} {{$data->type}}
@php $b++; @endphp @endforeach

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

@csrf
{{__('Separate feature by semicolon ( ; ).')}}
@endsection @section('script') @endsection