@extends('admin.admin_dashboard')
@section('admin')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
Add Price
Sl No |
Category Name |
SubCategory Name |
Price |
Action |
@foreach ($data as $key => $item)
{{$key + 1}} |
{{$item['category']['slug'] ?? '-'}} |
{{$item['subcategory']['slug'] ?? '-'}} |
{{$item->points ?? '-'}} |
Edit
Delete
|
@endforeach
@endsection