@extends('layouts.admin_layout')
@section('content')
@section('title', 'Team List')
S.No |
Name |
Image |
Status |
Action |
@forelse($teams as $key=>$row)
{{$key+1+($teams->currentPage()-1) * ($teams->perPage())}} |
{{$row->name ?? ''}} |
}}) |
@if($row->status == 1) @else @endif |
Edit
Delete
|
@empty
Data not found |
@endif
{{$teams->links()}}
@include('includes.admin.footer')
@include('includes/admin/delete-model')
@stop