@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Promocode Name') }}: {{ $data->name }}

{{ __('Promocode') }}:
{{ $id->code }}
{{ __('Status') }}:
{{ ucfirst($data->status) }}
{{ __('Expires at') }}:
{{ $id->expired_at }}
{{ __('Promocode Type') }}:
@if ($data->type == 'percentage') {{ __('Percentage Discount') }} @else {{ __('Fixed Discount') }} @endif
{{ __('Discount Value') }}:
{{ $data->discount }}
{{ __('Available Quantity') }}:
{{ $id->usages_left }}
{{ __('Multi Usage by the same User') }}:
@if ($id->multi_use == 1) {{ __('Allowed') }} @else {{ __('Not Allowed') }} @endif
@endsection