@extends('layouts/contentLayoutMaster') @section('title', 'Billing History') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')

All Plans

@if ($errors->any())
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($products as $product) @foreach ($product as $pro) @endforeach @endforeach
ID Nickname Amount Currency Interval Action
{{ $product->id }} {{ $product->nickname }} {{ $product->amount/100 }} {{ $product->currency }} {{ $product->interval }}
Edit @csrf @method('DELETE')
@endsection