114 lines
5.9 KiB
PHP
114 lines
5.9 KiB
PHP
@extends('layouts.app', ['title' => 'Eventos'])
|
|
@section('content')
|
|
<div class="mt-1">
|
|
<div class="row">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="d-flex flex-wrap gap-2">
|
|
<div class="">
|
|
<a href="{{ route('evento-funcionarios.create') }}" class="btn btn-success">
|
|
<i class="ri-add-circle-fill"></i>
|
|
Novo Evento
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<hr class="mt-3">
|
|
<div class="col-lg-12">
|
|
{!!Form::open()->fill(request()->all())
|
|
->get()
|
|
!!}
|
|
<div class="row mt-3">
|
|
<div class="col-md-4">
|
|
{!!Form::text('nome', 'Pesquisar por nome')
|
|
!!}
|
|
</div>
|
|
<div class="col-md-3 text-left">
|
|
<br>
|
|
<button class="btn btn-primary" type="submit"> <i class="ri-search-line"></i>Pesquisar</button>
|
|
<a id="clear-filter" class="btn btn-danger" href="{{ route('evento-funcionarios.index') }}"><i class="ri-eraser-fill"></i>Limpar</a>
|
|
</div>
|
|
</div>
|
|
{!!Form::close()!!}
|
|
</div>
|
|
<div class="col-12 mt-3">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-centered mb-0">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th>
|
|
<div class="form-check form-checkbox-danger mb-2">
|
|
<input class="form-check-input" type="checkbox" id="select-all-checkbox">
|
|
</div>
|
|
</th>
|
|
<th>Nome</th>
|
|
<th>Tipo</th>
|
|
<th>Método</th>
|
|
<th>Ativo</th>
|
|
<th>Condição</th>
|
|
<th>Tipo Valor</th>
|
|
<th>Ações</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($data as $item)
|
|
<tr>
|
|
<td data-label="Selecionar">
|
|
<div class="form-check form-checkbox-danger mb-2">
|
|
<input class="form-check-input check-delete" type="checkbox" name="item_delete[]" value="{{ $item->id }}">
|
|
</div>
|
|
</td>
|
|
<td data-label="Nome">{{ $item->nome }}</td>
|
|
<td data-label="Tipo">{{ strtoupper($item->tipo) }}</td>
|
|
<td data-label="Método">{{ strtoupper($item->metodo) }}</td>
|
|
<td data-label="Ativo">
|
|
@if($item->ativo)
|
|
<i class="ri-checkbox-circle-fill text-success"></i>
|
|
@else
|
|
<i class="ri-close-circle-fill text-danger"></i>
|
|
@endif
|
|
</td>
|
|
<td data-label="Condição">{{ strtoupper($item->condicao) }}</td>
|
|
<td data-label="Tipo Valor">{{ strtoupper($item->tipo_valor) }}</td>
|
|
<td>
|
|
<form style="width: 100px;" action="{{ route('evento-funcionarios.destroy', $item->id) }}" method="post" id="form-{{$item->id}}">
|
|
@method('delete')
|
|
<a class="btn btn-warning btn-sm" href="{{ route('evento-funcionarios.edit', [$item->id]) }}">
|
|
<i class="ri-pencil-fill"></i>
|
|
</a>
|
|
@csrf
|
|
<button type="button" class="btn btn-delete btn-sm btn-danger">
|
|
<i class="ri-delete-bin-line"></i>
|
|
</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="8" class="text-center">Nada encontrado</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<br>
|
|
<form action="{{ route('evento-funcionarios.destroy-select') }}" method="post" id="form-delete-select">
|
|
@method('delete')
|
|
@csrf
|
|
<div></div>
|
|
<button type="button" class="btn btn-danger btn-sm btn-delete-all" disabled>
|
|
<i class="ri-close-circle-line"></i> Remover selecionados
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{!! $data->appends(request()->all())->links() !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('js')
|
|
<script type="text/javascript" src="js/delete_selecionados.js"></script>
|
|
@endsection |