@extends('admin.layouts.app') @section('title', 'My Codes') @section('content')

My Codes

@can('my_code.create') Add Product Code @endcan
@include('admin.my_codes.filters')
@forelse ($codes as $code) @empty @endforelse
# Code Added At
{{ $loop->iteration + ($codes->firstItem() - 1) }} {{ $code->code }} {{ $code->pivot->used_at ? \Carbon\Carbon::parse($code->pivot->used_at)->format('d-M-Y h:i A') : '' }}
No records found.
@endsection