@extends('client.layout.master') @section('content')
Plans
    @foreach($plans as $plan)
  • {{ $plan->name }}
    ${{ number_format($plan->cost, 2) }} monthly
    {{--
    {{ $plan->description }}
    Choose --}}
    {{ $plan->name }}
    ${{ number_format($plan->cost1, 2) }} Life Time
    {{--
    {{ $plan->description }}
    --}}
    {{-- Choose --}}
  • @endforeach
@endsection