@extends('admin.layouts.app') @section('panel')
@forelse($pools as $pool) @empty @endforelse
@lang('Name') @lang('Amount') @lang('Invested Amount') @lang('End Date') @lang('Share Interest') @lang('Status') @lang('Action')
{{ __($pool->name) }} {{ showAmount($pool->amount) }} {{ showAmount($pool->invested_amount) }} {{ showDateTime($pool->end_date) }} @if ($pool->share_interest) {{ $pool->interest }}% @else --- @endif @php echo $pool->statusBadge; @endphp
{{ __($emptyMessage) }}
@if ($pools->hasPages()) @endif
@endsection @push('style') @endpush @push('breadcrumb-plugins') @endpush @push('script') @endpush