@extends('backend::layouts.app') @section('content') Plans @foreach($items as $item) @endforeach
Id Name Stripe Product Id Prices Created at Actions
{{ $item->id }} {{ $item->name }} {{ $item->stripe_product_id }} @foreach($item->prices as $price)
{{ $price->name }} {{ $price->amount }}€
@endforeach
{{ app_date($item->created_at) }} Show Edit
@endsection