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

Coupon Management manage package/channel coupon

Search Coupon

@if ($message = Session::get('success'))

{{ $message }}

@endif

Coupon data

Download Excel
@foreach ($results as $admin) @endforeach
ID Name Code Serial Number Type Duration Allocated Allocated User Action
{{ $admin->id }} {{ $admin->name }} {{ $admin->code }} {{ $admin->serial_number }} {{ $admin->coupon_type }} {{ $admin->duration_type }} Month {{ ucfirst($admin->is_allocated)}} @if($admin->email!=""){{ $admin->email}}@endif @if(isset($admin->status) && ($admin->status == 'inactive')) @else @endif Delete

Showing {{ $pageInfo['currentPage'] }} to {{ $pageInfo['lastPage'] }} of {{ $pageInfo['total'] }} entries
{!! $results->appends($append)->render() !!}
@include('elements.package') @endsection