@extends('admin.layout') @section('content')
{{ __('team.Team') }}
@forelse ($data as $team)
{{ Form::open(['method' => 'DELETE', 'style' => 'margin-top: -12%;', 'action' => ['Admin\TeamsController@destroy', $team->id]]) }} {{ Form::hidden('id', $team->id) }} {{ Form::close() }}
Card image cap
{{ $team->name_ar }}
{{ $team->position_ar }}
@empty
{{ __('team.No_Team') }}
@endforelse
{{ $data->links() }}
@endsection