@extends('voyager::master') @section('page_title', 'Importar archivos EXCEL') @section('page_header')

Importar articulos

@stop @section('content')
@include('voyager::alerts') {{-- Botón de Exportación --}}

Importar TODOS LOS ARTICULOS

@if (isset($errors) && $errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{-- Segundo Formulario de Importación --}}

Importar ARTICULOS PUBLICADOS

@if (isset($errors) && $errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if (session('success2'))
{{ session('success2') }}
@endif @if (session('error2'))
{{ session('error2') }}
@endif
@stop @section('javascript') @stop