@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Admin Organization Plan')) @section('header-title')

{{ __('Organization Plans') }}

@endsection @section('content')
@forelse ($plans as $plan) @empty @endforelse
# {{ __('Title') }} {{ __('Price') }} {{ __('Type') }} {{ __('Active Status') }} {{ __('Action') }}
{{ generateID($plan->id) }} {{ $plan->title }} {{ currency($plan->price) }} {{ $plan->plan_type }} @if (!$plan->is_active)
{{ __('De-Activated') }}
@else
{{ __('Activated') }}
@endif
{{ __('Edit Plan') }}
{{ __('No Plans Available') }}
{{-- {{ $requests->links() }} --}}
@endsection