@extends('layouts.admin_template') @section('content')

Rewards List

@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach
@foreach($rewardslists as $key=>$rewardslist) @endforeach
ID Name Image Description NTC Min Traded Lots Per Client Min Deposit Per Client Total Deposit Total Traded Lots Status Action
{{ $key+1 }} {{ $rewardslist->reward_name }} {{ $rewardslist->reward_description }} {{ $rewardslist->r1_total_client }} {{ $rewardslist->r1_total_lots }} {{ $rewardslist->r1_total_deposit }} {{ $rewardslist->r2_total_deposit }} {{ $rewardslist->r2_total_lots }} @if($rewardslist->status == '1') Active @else In Active @endif @if($rewardslist->status == '1') Suspend @endif @if($rewardslist->status == '0') Active @endif
@endsection