@extends('layouts.admin') @section('title', '| Plans') @section('content')

{{ __('Plans') }}

{{ __('New plan') }}
@foreach ($plans as $plan ) @endforeach
{{ __('Name') }} {{ __('Interval') }} {{ __('Price') }} {{ __('Team Limit') }} {{ __('Date') }} {{ __('Status') }} {{ __('Action') }}
{{ $plan->title }} {{ $plan->interval }} {{ $plan->price }} {{ $plan->teams_limit }} {{ $plan->created_at->diffForHumans() }} @if ($plan->active === 1) {{ __('Active') }} @else {{ __('Inactive') }} @endif
@csrf @method('DELETE')
@endsection