@extends('layouts.admin') @section('content')
@include('layouts.errors')
@if($plans->count() > 0) @foreach($plans as $plan) @endforeach @endif
Plan name Type Price Include Plan For Action
{{ ucfirst($plan->type) }} {{ number_format($plan->price, 2) }} @if($plan->plan_for == 'client') {{ ($plan->include != 'null') ? $plan->include : '' }} @else {{ $plan->no_of_clients }} Clients @endif {{ ucfirst($plan->plan_for) }}
@csrf @method('DELETE')
@endsection