@extends('admin.layout.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse ($videos as $key => $video) @empty @endforelse
# Product Name SP MRP Stock Video Link Status Action
{{ $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
@csrf @method('DELETE')
No video entries found.
@if(method_exists($videos, 'links'))
{{ $videos->links('pagination::bootstrap-4') }}
@endif
@endsection