@extends(config('manager.views.layouts.master')) @section('content') @include('manager::partials.breadcrumb', [ 'pages' => ['Onde encontrar', 'Representantes'] ]) @include('manager::partials.page-header', [ 'title' => 'Representantes', 'subtitle' => 'Onde encontrar', 'link' => [ 'route' => route('manager.representatives.create'), 'label' => 'Inserir representante', 'btn-type' => 'primary', ], ]) @include('manager::partials.messages')
Limpar filtros
@foreach ($representatives as $representative) @endforeach
Representante Região Telefone E-mail Ativo? Ações
{{ $representative->name }} {{ $representative->region }} {{ $representative->phone }} {{ $representative->email }} active ? 'checked="checked"' : null !!}>
@if ($representatives->count() === 0)

Nenhum representante encontrado.

@endif {!! $representatives->appends(request()->except('page'))->render() !!} @stop