@section('style') @endsection @extends('layouts.backend.app') @section('content')

{{ __('My Coupon List') }}

@csrf
@foreach($posts as $post) @endforeach
{{ __('Code') }} {{ __('Percentage') }} {{ __('Count') }} {{ __('Expired Date') }} {{ __('Status') }} {{ __('Last Modified') }}
{{ $post->title }} {{ $post->count }}% OFF {{ $post->coupon_count }} {{ $post->slug }} @if($post->status==1) Published @elseif($post->status==2) {{ __('Draft') }} @else {{ __('Trash') }} @endif {{ __('Last Modified') }}
{{ $post->updated_at->diffForHumans() }}
{{ __('Code') }} {{ __('Percentage') }} {{ __('Count') }} {{ __('Expired Date') }} {{ __('Status') }} {{ __('Last Modified') }}
{{ $posts->links() }}
@endsection @section('script') @endsection