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

Category List

@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach
@foreach($rewardslists as $key=>$rewardslist) @endforeach
ID Name Image Status Action
{{ $key+1 }} {{ $rewardslist->name }} @if($rewardslist->status == '1') Active @else In Active @endif @if($rewardslist->status == '1') Suspend @endif @if($rewardslist->status == '0') Active @endif
@endsection