@extends('admin.layouts.master') @section('title', 'List of Product Labels') @section('content')

Product Label List

Product lable List
@foreach ($productlables as $id => $productlable) @endforeach
Serial # Lable Created at Action
{{ ++$id }} {{ $productlable->name }} {{ \Carbon\Carbon::parse($productlable->created_at)->diffForHumans() }}
@endsection