@extends('admin.layouts.master-soyuz') @section('title',__('All RMA Reasons | ')) @section('body') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('All RMA Reasons') }}
@foreach ($allrma as $key => $item) @endforeach
{{ __('#') }} {{ __('Reason') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$key }} {{ $item->reason }}

{{ $item->status == 1 ? __("Active") : __("Deactive") }}

@endsection