@extends(decide_template()) @section('title', $pageTitle) @section('page_styles') @endsection @section('page_scripts') @endsection @section(decide_content()) @if(!bounceRulesSynced() && $super_admin) @endif @if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
  • {{trans('bounce_rule.view.table_heading.label')}} {{trans('bounce_rule.view.table_heading.reason')}} {{trans('bounce_rule.view.table_heading.details')}} {{trans('bounce_rule.view.table_heading.code')}} {{trans('bounce_rule.view.table_heading.type')}} {{trans('bounce_rule.view.table_heading.status')}} {{trans('common.table_heading.actions')}}
  • @php($user = Auth::user()) @if(isset($global))
  • {{$global->label}} {{$global->reason}} {{$global->details}} {{trans('bounce_rule.view.table_data.bounce_any')}} {{$global->type=='no_process'?trans('bounce_rule.view.table_data.no_process'):ucfirst($global->type)}} {{--status==1?'checked':''}} onclick="changeStatus('{{$url}}','{{$st}}','bounce_reasons')">--}} @if(routeAccess('bounce-rules.edit')) @endif
  • @endif @foreach($bounce_reasons as $reason) {{-- @php($default = $reason->is_default) @if($default && !$user->is_admin) @continue; @endif--}}
  • {{$reason->label}} {{$reason->reason}} @php($st = $reason->status==1?'0':'1') @php($url = route('updateStatus', $reason)) {{$reason->details}} {{$reason->code}} {{$reason->type=='no_process'?trans('bounce_rule.view.table_data.no_process'):ucfirst($reason->type)}} {{--status==1?'checked':''}} onclick="changeStatus('{{$url}}','{{$st}}','bounce_reasons')">--}} @if(routeAccess('bounce-rules.destroy')) @endif @if(routeAccess('bounce-rules.edit')) @endif
  • @endforeach
@endsection