arcadiasuite/plus/resources/views/delivery/servicos/index.blade.php

118 lines
5.8 KiB
PHP

@extends('layouts.app', ['title' => 'Serviços'])
@section('content')
<div class="mt-1">
<div class="row">
<div class="card">
<div class="card-body">
<div class="col-md-2">
@can('servico_create')
<a href="{{ route('servicos.create', ['marketplace=1']) }}" class="btn btn-success">
<i class="ri-add-circle-fill"></i>
Novo Serviço
</a>
@endcan
</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-3">
{!!Form::text('nome', 'Pesquisar por nome')
!!}
</div>
<div class="col-md-2">
{!!Form::select('status', 'Status', ['' => 'Todos', '1' => 'Ativos', '0' => 'Desativados'])
->attrs(['class' => 'form-select'])
!!}
</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('servicos.index') }}"><i class="ri-eraser-fill"></i>Limpar</a>
</div>
</div>
{!!Form::close()!!}
</div>
<div class="col-12 mt-3">
<div class="table-responsive-sm">
<table class="table table-striped table-centered mb-0">
<thead class="table-dark">
<tr>
<th></th>
<th>Descrição</th>
<th>Valor</th>
<th>Duração</th>
<th>Status</th>
@if(__isActivePlan(Auth::user()->empresa, 'Delivery'))
<th>MarketPlace</th>
@endif
<th>Ações</th>
</tr>
</thead>
<tbody>
@forelse($data as $item)
<tr>
<td><img class="img-60" src="{{ $item->img }}"></td>
<td>{{ $item->nome }}</td>
<td>{{ __moeda($item->valor) }}</td>
<td>{{ $item->tempo_servico }} - {{ $item->unidade_cobranca }} </td>
<td>
@if($item->status)
<i class="ri-checkbox-circle-fill text-success"></i>
@else
<i class="ri-close-circle-fill text-danger"></i>
@endif
</td>
@if(__isActivePlan(Auth::user()->empresa, 'Delivery'))
<td>
@if($item->marketplace)
<i class="ri-checkbox-circle-fill text-success"></i>
@else
<i class="ri-close-circle-fill text-danger"></i>
@endif
</td>
@endif
<td>
<form action="{{ route('servicos.destroy', $item->id) }}" method="post" id="form-{{$item->id}}">
@method('delete')
@can('servico_edit')
<a class="btn btn-warning btn-sm" href="{{ route('servicos.edit', [$item->id]) }}">
<i class="ri-pencil-fill"></i>
</a>
@endcan
@csrf
@can('servico_delete')
<button type="button" class="btn btn-delete btn-sm btn-danger">
<i class="ri-delete-bin-line"></i>
</button>
@endcan
</form>
</td>
</tr>
@empty
<tr>
<td colspan="9" class="text-center">Nada encontrado</td>
</tr>
@endforelse
</tbody>
</table>
<br>
</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