@extends('layouts.master') @section('title', 'Coupons') @section('title', 'Coupons | Proxima - Medical Management app') @section('title-topbar', 'Coupons') @section('css') @endsection @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @section('content')
Dashboard | Coupons Controll
Coupons Controll
@foreach ($coupon as $iteam) @if ($iteam->status == 0) @php $type = 'Appointment'; @endphp @elseif ($iteam->status == 1) @php $type = 'Treatment'; @endphp @endif @endforeach
CODE TYPE VALUE PERCENT STATUS CREATED AT HANDLE
{{ $iteam->code }} {{ $iteam->type }} {{ $iteam->value }} {{ $iteam->percent_off }} @if ($iteam->status == 0) deactivate @else Actived @endif {{ date('d M Y', strtotime($iteam->created_at)) }} Edit
@endsection @section('js') @endsection