@extends('panel::layouts.app') @section('body-class', '') @section('title', __('panel/menu.customer_groups')) @section('page-title-right') {{ __('panel/common.create') }} @endsection @section('content')
@if ($groups->count())
@foreach($groups as $item) @endforeach
{{ __('panel/common.id') }} {{ __('panel/common.name') }} {{ __('panel/customer.level') }} {{ __('panel/customer.mini_cost') }} {{ __('panel/customer.discount_rate') }} {{ __('panel/common.actions') }}
{{ $item->id }} {{ $item->translation->name ?? '' }} {{ $item->level }} {{ currency_format($item->mini_cost, system_setting('currency')) }} {{ $item->discount_rate }}
{{ __('panel/common.edit')}}
@csrf @method('DELETE') {{ __('panel/common.delete')}}
{{ $groups->withQueryString()->links('panel::vendor/pagination/bootstrap-4') }} @else @endif
@endsection @push('footer') @endpush