@extends('admin.layouts.app') @section('title', 'Product Labels') @section('page_css') @endsection @section('section')

Labels

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@forelse($labels as $label)

{{$label->title}}

request()->id, 'label_id' => $label->id])}}">
request()->id, 'label_id' => $label->id])}}"> @csrf @method('delete')
@empty

No labels found!

@endforelse
@csrf
@endsection @section('script') @endsection