@extends('home') @section('title') {{ __('Supervisors') }} @endsection @section('styles') @endsection @section('content')
{!! Form::open(array('route' => ['admin.supervisor.index'],'method' => 'GET', 'class' => 'form-inline margin-bottom-0','id' => 'myform')) !!}
{!! Form::close() !!}
@foreach ($users as $index => $user) profile->expiry) class="danger" @endif> @endforeach
{{ __('Name') }} {{ __('Expiry date') }} {{ __('Package') }} {{ __('Package type') }} {{ __('Renewal') }}
{{ $loop->index + $users->firstItem() }} {{ @$user->name }} profile->expiry) class="danger" @endif> {{ \Carbon\Carbon::createFromTimeStamp(strtotime(@$user->profile->expires_at))->format('Y-m-d') }} {{ @$user->profile->package->title }} {{ __(@$user->profile->type) }} {{ __(@$user->profile->renewal) }} {{ Form::open(['method' => 'DELETE', 'route' => ['admin.supervisor.destroy', @$user->id]]) }} @if (@$user->publish == 1) @elseif (@$user->publish == -1) @else @endif {{ Form::close() }}
@endsection @section('scripts') @endsection