@extends('layouts.merchant-backend-layout') @section('content')

Loyalty Structure Details



@include('includes.messages')
@if(count($data['loyalty']) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ($data['loyalty'] as $ad ) {{--*/ $class= ($ad->is_active==1)?'Active':'Inactive'/*--}} {{--*/ $type= ($ad->loyalty_type==1)?'Stamps':'Points'/*--}} @endforeach
Loyalty name Loyalty type QR code
{{$ad->name}} {{$type}} @if($ad->loyalty_type==1)View & Print @endif
@endif
@stop