@extends('admin.layouts.master-soyuz') @section('title',__('All RMA Reasons | ')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('All RMA Reasons') }} @endslot @slot('menu1') {{ __("All RMA Reasons") }} @endslot @slot('button')
{{ __('Add Reason') }}
@endslot ​ @endcomponent
@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