@extends('admin.layouts.master-soyuz') @section('title','All Coupans') @section('body') @component('admin.component.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('All Coupans') }} @endslot @slot('menu1') {{ __('Coupans') }} @endslot @slot('button')
@endslot @endcomponentID | CODE | Amount | Max Usage | Detail | Action | @foreach($coupans as $key=> $cpn)
---|---|---|---|---|---|
{{ $key+1 }} | {{ $cpn->code }} | @if($cpn->distype == 'fix') @endif {{ $cpn->amount }}@if($cpn->distype == 'per')% @endif | {{ $cpn->maxusage }} |
Linked to : {{ ucfirst($cpn->link_by) }} Expiry Date: {{ date('d-M-Y',strtotime($cpn->expirydate)) }} Discount Type: {{ $cpn->distype == 'per' ? "Percentage" : "Fixed Amount" }} |
@can('coupans.edit')
Edit
@endcan
@can('coupans.delete')
{{ __("Delete") }}
@endcan
Delete{{ __('Are You Sure ?')}}{{ __('Do you really want to delete')}}? {{ __('This process cannot be undone.')}} |