@extends('layouts.back-end.app') @section('title', \App\CPU\translate('Deal Of The Day')) @push('css_or_js') @endpush @section('content')

{{\App\CPU\translate('deal_of_the_day')}}

@csrf @php($language=\App\Model\BusinessSetting::where('type','pnc_language')->first()) @php($language = $language->value ?? null) @php($default_lang = 'en') @php($default_lang = json_decode($language)[0])
@foreach(json_decode($language) as $lang)
@endforeach
{{ \App\CPU\translate('deal_of_the_day')}} {{ $deals->total() }}
@foreach($deals as $k=>$deal) @endforeach
{{ \App\CPU\translate('SL')}} {{ \App\CPU\translate('title')}} {{ \App\CPU\translate('product')}} {{ \App\CPU\translate('info')}} {{ \App\CPU\translate('status')}} {{ \App\CPU\translate('action')}}
{{$deals->firstItem()+ $k}} {{$deal['title']}} {{isset($deal->product)==true?$deal->product->name:'\App\CPU\translate("not selected")'}}
{{$deals->links()}}
@if(count($deals)==0)
Image Description

{{\App\CPU\translate('No data to show')}}

@endif
@endsection @push('script') @endpush