@extends('layouts.app') @section('content')
PLAGAS DEL PRODUCTO {{ $product->name }}
@csrf
@foreach ($pest_categories as $i => $pest_category)

@if (!$pest_category->pests->isEmpty()) @foreach ($pest_category->pests as $pest)
hasPest($pest->id) ? 'checked' : '' }} />
@endforeach @else

No hay plagas asociadas

@endif
@endforeach
@endsection