@extends('backend.layouts.user') @section('page-title', trans('app.refunds')) @section('page-heading', trans('app.refunds')) @section('content')
@include('backend.partials.messages')
@lang('app.refunds')
@if (count($refunds)) @foreach ($refunds as $refund) @include('backend.refunds.partials.row', ['base' => true]) @endforeach @else @endif
@stop