@extends('admin/layouts/default')
@section('title')
Team ::
@parent
@stop
@section('content')
@include('admin/notifications')
{{ $teams->links() }}
Name |
Order |
Status |
Actions |
@foreach ($teams as $team)
{{ e($team->name) }} |
{{ $team->order }} |
{{ ($team->status==1?'Active':'Inactive') }} |
|
@endforeach
{{ $teams->links() }}
@stop