first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<div class="panel-wrap flash-sale" id="products-wrapper">
{{-- Products will be added here dynamically using JS --}}
</div>
<div class="form-group">
<button type="button" class="add-product btn btn-default m-l-15">
{{ trans('flashsale::flash_sales.form.add_product') }}
</button>
</div>
@include('admin::partials.selectize_remote')
@include('flashsale::admin.flash_sales.templates.product')
@push('globals')
<script>
FleetCart.data['flash_sale.products'] = {!! old_json('products', $flashSale->products) !!};
FleetCart.errors['flash_sale.products'] = @json($errors->get('products.*'), JSON_FORCE_OBJECT);
</script>
@endpush

View File

@@ -0,0 +1,5 @@
<div class="row">
<div class="col-md-8">
{{ Form::text('campaign_name', trans('flashsale::attributes.campaign_name'), $errors, $flashSale, ['required' => true]) }}
</div>
</div>