@extends('layouts.admin') @section('css') @endsection @section('content')

All Plans

Add Plan
@include('components.admin.error-message')
@if(!empty($plans)) @foreach($plans as $plan)
{{$plan->name}}
$

{{$plan->price}}

  • Price: {{number_format($plan->price,2,'.',',')}}
  • Duration: {{$plan->duration_days}} {{$plan->intervals}}
Status
{{$plan->status == 1 ? 'active': 'inactive'}}
@endforeach @endif
@endsection @section('script') @endsection