@extends('layouts.admin') @section('title', $pageTitle) @section('content') @include('include.admin.toast')
@forelse ($plugins as $plugin) @empty @endforelse
{{ __('SR No') }} {{ __('Product Name') }} {{ __('Domain') }} {{ __('Token') }} {{ __('Status') }} {{ __('Created') }} {{ __('Action') }}
{{ $plugins->firstItem() + $loop->index }} {{ $plugin->product_name ?? '-' }} {{ $plugin->domain ?? '-' }}
{{ $plugin->token ?? '-' }} @if ($plugin->token) @endif
status === 'active' ? 'checked' : '' }}>
{{ $plugin->created_at->diffForHumans() }} {{ __('Edit') }} {{ __('Delete') }}
{{ __('No Records Found') }}
@if ($plugins->hasPages())
{{ $plugins->links('pagination::bootstrap-5') }}
@endif
@endsection