@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("supply-teams")}}

{{__("all-supply-teams")}}

@endsection @section("content")
@if(isPermissionsAllowed("create-supply-teams")) @endif
@csrf {{__("Export As Excel")}}
@if(isPermissionsAllowed("edit-supply-team","delete-supply-team")) @endif @foreach($teams as $key => $team) @if(isPermissionsAllowed("edit-supply-team","delete-supply-team")) @endif @endforeach
# {{__("team-name")}} {{__("supervisor-name")}}{{__("control")}}
{{$serial_number++}} {{$team['supply'][$key]['supply_team_name']}} {{$team['supervisor']}} @if(isPermissionsAllowed("edit-supply-team")) @endif @if(isPermissionsAllowed("delete-supply-team")) @if($team['delete'] == 1) @endif @endif
@endsection