@extends('layouts.template.main') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Danh sách cấu hình
@forelse ($configs as $config) @empty @endforelse
# Profit tối thiểu Profit tối đa % hoa hồng Thu nhập tối đa Hành động
{{ $config->id }} {{ number_format($config->min_profit, 0) }} {{ $config->max_profit !== null ? number_format($config->max_profit, 0) : '∞' }} {{ number_format($config->commission_percent, 0) }}% {{ number_format($config->max_income, 0) }}
@csrf @method('DELETE')
@csrf @method('PUT')
Chưa có cấu hình nào.
@endsection