@extends('admin.layout.base') @section('title', 'Disputes ') @section('content')
@if(Setting::get('demo_mode', 0) == 1)
** Demo Mode : @lang('admin.demomode')
@endif
@lang('admin.dispute.title')
@can('dispute-create') @lang('admin.dispute.add_dispute') @endcan @foreach($dispute as $index => $dist) @endforeach
@lang('admin.id') @lang('admin.dispute.dispute_type') @lang('admin.dispute.dispute_name') @lang('admin.status') @lang('admin.action')
{{ $index + 1 }} {{ ucfirst($dist->dispute_type) }} {{ ucfirst($dist->dispute_name) }} @if($dist->status=='active') Active @else Inactive @endif
{{ csrf_field() }} @if( Setting::get('demo_mode', 0) == 0) @can('dispute-edit') Edit @endcan @can('dispute-delete') @endcan @endif
@lang('admin.id') @lang('admin.dispute.dispute_type') @lang('admin.dispute.dispute_name') @lang('admin.status') @lang('admin.action')
@endsection