@extends('admin.layouts.master') @section('title') Teams @stop @section('style') @stop @section('content')

Teams

@foreach($teams as $team) @endforeach
ID Code Team Name Team Manager Created At Updated At Actions
{{$team->id}} {{$team->code}} {{$team->name}} {{$team->manager->fullname ?? ''}} {{date("d-M-Y", strtotime($team->created_at))}} @if ($team->updated_at == null) NULL @else {{date("d-M-Y", strtotime($team->updated_at))}} @endif
@if(Session('info'))
@endif
@stop @section('script') @stop