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