@extends('admin.layouts.master') @section('title', 'Group list') @section('content')

{{ __('List of Product') }}

@forelse ($groups as $id => $group) @empty @endforelse
{{ __('#') }} {{ __('Group Name') }} {{ __('Type') }} {{ __('staus') }} {{ __('Action') }}
{{ ++$id }} {{ $group->name }} {{ $group->type }} {{ $group->description }}
@csrf
No Groups available.
@endsection