@extends('general.index', $setup);
@section('tbody')
@foreach ($setup['items'] as $item)
{{ $item->name }} |
{{ $item->code }} |
{{ $item->type == 0 ? $item->price." ".config('settings.cashier_currency') : $item->price." %"}} |
{{ $item->active_from }} |
{{ $item->active_to }} |
{{ $item->limit_to_num_uses }} |
{{ $item->used_count }} |
@include('partials.tableactions',$setup)
@endforeach
@endsection