@extends('layouts.admin_layout') @section('title',"Manage $action_name") @section('content')

Manage {{$action_name}}

@foreach($returns_and_exchanges as $returns_and_exchange_row) @endforeach
Order ID Product Name Purchased Rate Reason Order Item Status Request Status Action
{{strtotime($returns_and_exchange_row->created_at)}}-{{$returns_and_exchange_row->order_id}} {{$returns_and_exchange_row->product_name}}
{!!$returns_and_exchange_row->attribute_value_data!!}
Rs. {{$returns_and_exchange_row->purchased_rate}} {{$returns_and_exchange_row->return_reason}} {{$returns_and_exchange_row->order_status_title}} @if($returns_and_exchange_row->cancelled_status == 0) Request Pending @elseif($returns_and_exchange_row->cancelled_status == 1) Request Cancelled @else Request Completed @endif @if($returns_and_exchange_row->cancelled_status == 0) @if(!empty($auth_write_status)) Create Pickup @endif @endif
@endsection