@extends('layouts.default') @section('content') @include('alerts.danger') @if (session('message'))
{{ session('message') }}
@endif

Korisnici

Pronadji radius korisnika

@include('components.search', [ 'route' => 'search_customers', 'search' => $search, 'placeholder' => 'Pocetna slova...' ]) @forelse($customers as $customer) @empty @endforelse
Username Istice
{{ $customer['username'] }} {{ $customer['expire_on'] ? date('d.m.Y', strtotime($customer['expire_on']->setTimezone('Europe/Belgrade'))) : 'Neograniceno' }} {!! Form::open([ 'route' => 'store_payment', 'class' => 'form-inline', 'role' => 'form', 'method' => 'post' ]) !!} {!! Form::hidden('username', $customer['username']) !!}
{!! Form::select('plan_id', $plans, old('plan_id', $customer['plan_id'] ? $customer['plan_id'] : ($plan ? $plan->id : null)), [ 'id' => 'plan_id', 'class' => 'form-control input-sm', 'placeholder' => 'Odaberi plan...' ]) !!}
{!! Form::select('months', [ 1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 12 => 12, 24 => 24 ], old('months', 1), [ 'id' => 'months', 'class' => 'form-control input-sm', 'placeholder' => 'Meseci' ]) !!}
{!! Form::submit("Produzi", [ 'class' => 'btn btn-default btn-sm' ]) !!} {!! Form::close() !!}
Nema rezultata
@stop