@extends('backend.layouts.master') @section('section-title', 'Product Size') @section('page-title', 'Product Size List') @if (check_permission('size.store')) @section('action-button') Add Size @endsection @endif @push('css') @endpush @section('content')
@forelse($product_size as $data) {{-- delete modal --}} @csrf @method('DELETE') @empty @endforelse
#SL Size Name Action
{{ $loop->index + 1 }} {{ $data->size }}
No Data Available
{{-- Add Modal --}}
@csrf
@endsection