@extends('backend.layouts.master') @section('title') Teams @endsection @section('main-content') @include('backend.layouts.notification')
Terms
@if(count($teams)>0) @foreach($teams as $team) @endforeach
ID Name Photo Status Action
{{$team->id}} {{$team->name}} @if($team->photo) {{ Storage::url($team->photo) }} @else avatar.png @endif @if($team->status=='active') {{$team->status}} @else {{$team->status}} @endif
@else
No teams found!!! Please add team
@endif
@endsection