This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="modal" id="confirmModal" tabindex="-1" aria-labelledby="confirmModalLabel" aria-hidden="true"> | |
<div class="modal-dialog modal-dialogue-centered"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title" id="confirmModalLabel"><slot name="modal-header"></slot></h5> | |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | |
<span aria-hidden="true">×</span> | |
</button> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Exception; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\Log; | |
final class CsvService { | |
/** | |
* CSV data from file into an array using the provided mappings, then insert to database. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Aws\Ses\SesClient; | |
use Aws\Exception\AwsException; | |
/** | |
* Send an email using the 'raw' version of the API. | |
* Use this when needing to send an attachment. | |
* | |
* @param array $addresses |
OlderNewer