@extends('layouts.admin') {{trans('home.teams')}} @section('content')
@if(session()->has('success'))
{{ session()->pull('success') }}
@endif
{{trans('home.teams')}}

{{trans('home.table_contain_all_data_shortly_you_can_view_more_details')}}

@foreach($teams as $team) @endforeach
{{trans('home.id')}} {{trans('home.name')}} {{trans('home.position')}} {{trans('home.image')}} {{trans('home.status')}}
{{$team->id}} {{$team->name_en}} {{$team->position_en}} @if($team->img) @else @endif @if($team->status == 1) {{trans('home.yes')}} @else {{trans('home.no')}} @endif
@endsection