@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Refund Details @endsection @section('content')

Refund Details

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif

{{$advertiser->display_name}}

@if(isset($subscription->plan_description) && !empty($subscription->plan_description))

{{$plan_name}} : {{$plan_duration}} days

@endif

{{date('d/m/Y',strtotime($subscription->start_date))}} to {{date('d/m/Y',strtotime($subscription->end_date))}}

{{$subscription->amount}}

@csrf @if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('refund_amount')) {{ $errors->first('refund_amount') }} @endif
@if ($errors->has('refund_remarks')) {{ $errors->first('refund_remarks') }} @endif
@endsection