@extends('admin.layouts.app') @section('panel')

@lang('Manage scoping as individual records. Product scope overrides category scope when both exist.')

@lang('Category Scopes')
@forelse($categoryScopes as $row) @empty @endforelse
@lang('Category') @lang('Seller Types') @lang('Updated') @lang('Action')
{{ $row->name }} {{ $row->seller_type_count }} {{ showDateTime($row->updated_at) }} @lang('Edit')
@csrf @method('DELETE')
@lang('No saved category scopes')
@if($categoryScopes->hasPages())
@php echo paginateLinks($categoryScopes) @endphp
@endif
@lang('Product Scopes')
@forelse($productScopes as $row) @empty @endforelse
@lang('Product') @lang('Seller Types') @lang('Updated') @lang('Action')
{{ $row->name }} {{ $row->seller_type_count }} {{ showDateTime($row->updated_at) }} @lang('Edit')
@csrf @method('DELETE')
@lang('No saved product scopes')
@if($productScopes->hasPages())
@php echo paginateLinks($productScopes) @endphp
@endif
@endsection @push('script') @endpush