@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
# |
{{__("team-name")}} |
{{__("supervisor-name")}} |
@if(isPermissionsAllowed("edit-supply-team","delete-supply-team"))
{{__("control")}} |
@endif
@foreach($teams as $key => $team)
{{$serial_number++}} |
{{$team['supply'][$key]['supply_team_name']}} |
{{$team['supervisor']}} |
@if(isPermissionsAllowed("edit-supply-team","delete-supply-team"))
@if(isPermissionsAllowed("edit-supply-team"))
@endif
@if(isPermissionsAllowed("delete-supply-team"))
@if($team['delete'] == 1)
@endif
@endif
|
@endif
@endforeach
@endsection