@extends('layouts.adminlayout')
@section('content')
@if($user->role != -1)
Area List
# |
Plant |
Action |
@if(!empty($user->area_id))
@foreach(json_decode($user->area_id) as $index => $area)
@php
$a = App\Models\Plant::find($area);
@endphp
{{ $index + 1
}} |
{{ $a->name }} |
Delete |
@endforeach
@endif
@endif
@endsection