@extends('layouts.app') @section('content')
{{ __('TODAS LAS GARITAS REGISTRADAS') }} {{ __('CREAR GARITA') }}
@if (count($garitas) > 0) @foreach ($garitas as $garita) @endforeach @else @endif
{{ __('ID') }} {{ __('Régimen Único del Contribuyente') }} {{ __('Nombre ó Razón Social') }} {{ __('Personal Responsable') }} {{ __('Nro. de Contacto') }} {{ __('Acciones del Sistema') }}
{{ $garita->id }} {{ $garita->ruc_empresa }} {{ $garita->nombre_garita }} {{ optional($garita->responsable)->name }} {{ $garita->contacto }} {{ __('VER') }} {{ __('EDITAR') }}
@csrf @method('DELETE')
{{ __('No hay datos disponibles') }}
@push('js') @endpush @endsection