| # |
Product Name |
SP |
MRP |
Stock |
Video Link |
Status |
Action |
@forelse ($videos as $key => $video)
| {{ $key + 1 }} |
{{ $video->product_name }} |
₹{{ number_format($video->sp, 2) }} |
₹{{ number_format($video->mrp, 2) }} |
{{ $video->stock ?? 0 }} |
|
@if ($video->status == 'active')
Active
@else
Inactive
@endif
|
|
@empty
|
No video entries found.
|
@endforelse
@if(method_exists($videos, 'links'))
{{ $videos->links('pagination::bootstrap-4') }}
@endif