{{-- @extends('admin.layouts.app') @section('content')

Category Management

Sub-Category List

@foreach ($subCategory as $category) @endforeach
Id Name Description Status Action
{{$category->id}} {{$category->name}} {{$category->description}} {!!$category->active!!}
{{method_field('DELETE')}} @csrf
@endsection --}} @extends('layout.admin_layout') @section('title', 'admin-dashboard') @section('body') @section('header', 'Coupon Details') @section('badge') @endsection

Coupon Details

{{ $coupon_dtl->code }}
{{ $coupon_dtl->description }}
{{ $coupon_dtl->discount_type == 1 ? "Flat Discount":"Discount in %" }}
{{ $coupon_dtl->discount }}
{{ date("d-m-Y", strtotime($coupon_dtl->start_date)) }}
{{ date("d-m-Y", strtotime($coupon_dtl->end_date)) }}
@if (!empty($coupon_dtl->image))
Image :
@endif {{--
Id Name Description Status
{{ $coupon_dtl->id }} {{ $coupon_dtl->name }} {{ $coupon_dtl->description }} {!! $coupon_dtl->active !!}
--}}
@endsection