@extends('dashboard::layouts.layout') @push('header')
@endpush @section('content')
@lang('main.transaction')
@lang('main.transactions')
@isset($transaction)
@foreach (\App\Models\Transaction::STATUS as $key => $status) @endforeach
@foreach (\App\Models\Transaction::PAYMENT as $key => $status) @endforeach
@foreach (\App\Models\Transaction::OPERATION as $key => $status) @endforeach
@foreach (\App\Models\Coupon::whereActive(true)->get() as $coupon) @endforeach
@foreach (\App\Models\Product::active()->get() as $product) @endforeach
@endisset
@stop