@extends('backend.layouts.main')
@section('title')
Team Management
@endsection
@section('content')
| S.N. |
Image |
Name |
Type |
Display Order |
Status |
Actions |
@foreach ($teams as $team)
| {{ $loop->iteration }} |
@if ($team->image)
@else
@endif
|
{{ $team->name }} |
{{ $team->type }} |
{{ $team->display_order }} |
@if ($team->is_published)
Published
@else
Draft
@endif
|
|
@endforeach
@endsection
@section('scripts')
@endsection