@include('shared.message')
@if(count($plans) == 0)
{{ __('No results found.') }}
@else
{{ __('Name') }}
{{ __('Visibility') }}
{{ __('Status') }}
@foreach($plans as $plan)
{{ $plan->name }}
@if($plan->isDefault())
{{ __('Default') }}
@endif
{{ ($plan->visibility ? __('Public') : __('Unlisted')) }}
{{ ($plan->trashed() ? __('Disabled') : __('Active')) }}
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $plans->firstItem(), 'to' => $plans->lastItem(), 'total' => $plans->total()]) }}
{{ $plans->onEachSide(1)->links() }}
@endif