@extends('layouts.adminlayout') @section('content')
{{--
@csrf

Add Plant

--}} @if(isset($eplant) && !empty($eplant))
@csrf

Edit Plant

@endif
@foreach($plants as $index => $plant) @endforeach
ID PLANT NAME TERRITORY NAME ACTION
{{$loop->iteration}} {{$plant->name}} {{$plant->territory->name}} Edit
@endsection