@extends('Dashboard.layouts.master') @section('title','Plans | List') @section('css') @endsection @section('content')
@foreach ($plans as $key => $plan) s @endforeach
No. Name Price Subscribers count Actions
{{ ++$key }} {{ $plan->name }} {{ number_format($plan->price, 1) }} $ {{ count($plan->subscribers) }} Subscribe @can('plans-update') {{__('forms.edit')}} @endcan @can('plans-delete')
@csrf @method("DELETE")
@endcan
@endsection @section('scripts') @endsection