@extends('layouts.app') @section('content')
@{{ sectionNameSelected }} {{ $shop->sectionContent->first()->section->name }}  

{{ $shop->name }} {{ __('general.new product') }}

{!! $Products->render() !!} @foreach($Products as $Product) @endforeach
Nombre Stock Precio Precio anterior Activo
{{ ucfirst($Product->name) }} {{ $Product->stock }} {{ $Product->price }} {{ $Product->discount_price }}
Eliminar
active ? ' checked' : '' }}>
{!! $Products->render() !!}
 
Cupon
@foreach($shop->coupons()->orderBy('id', 'desc')->get() as $coupon) @endforeach
Código Valor Fecha Activo
{{ $coupon->name }} {{ $coupon->getValueWithLabel() }}
active ? ' checked' : '' }}>
@if(count($errors) > 0) @foreach($errors->all() as $error)
{{ $error }}
@endforeach @endif
@endsection