One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| @component('mail::layout') | |
| {{-- Header --}} | |
| @slot('header') | |
| @component('mail::header', ['url' => config('app.url')]) | |
| {{ $content['title'] }} | |
| @endcomponent | |
| @endslot | |
| {{-- Body --}} |
| <template> | |
| <div v-show="banners.length > 0"> | |
| <swiper :options="swiperOption"> | |
| <swiper-slide v-for="(banner, index) in banners" :key='index'> | |
| <img :src="'/img/banners/home/' + banner.image" :alt="banner.title"> | |
| <div v-if="banner.title != null" class="text container"> | |
| <h4>{{ banner.title }}</h4> | |
| <p>{{ banner.description }}</p> | |
| <a :href="banner.link" class="leia text-uppercase" title="Leia Mais">Leia Mais</a> | |
| </div> |
| <template> | |
| <div> | |
| <a @click="modalShow = !modalShow" v-show="!modalShow" class="link-quote" title="Solicite um orçamento"><span>Solicite um orçamento</span></a> | |
| <!-- Modal Component --> | |
| <b-modal ref="reqAQuote" v-model="modalShow" hide-footer hide-header id="modal"> | |
| <loading :active.sync="isLoading" :can-cancel="false"></loading> | |
| <b-link class="seta" @click="hideModal"></b-link> | |
| <b-row> | |
| <template> | |
| <div> | |
| <b-form @submit="onSubmit"> | |
| <div class="row justify-content-center"> | |
| <div class="col-md-10"> | |
| <div class="col-md-6"> | |
| <b-form-group> | |
| <b-form-input id="nome" type="text" v-model="form.nome" required placeholder="Nome *"></b-form-input> | |
| </b-form-group> | |
| <b-form-group> |
| //Este é o array que tenho | |
| const array1 = [ | |
| { | |
| "name": "João", | |
| "lastname": "Afonso", | |
| "participation": 12 | |
| }, | |
| { | |
| "name": "Maria", | |
| "lastname": "Fonseca", |
| AddDefaultCharset UTF-8 | |
| Options -Indexes | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteCond %{REQUEST_FILENAME} !-l | |
| RewriteCond %{REQUEST_URI} !^.*[^/]$ | |
| RewriteCond %{REQUEST_URI} !^.*//.*$ | |
| RewriteCond %{QUERY_STRING} !.*=.* |