A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);| <?php | |
| use Illuminate\Routing\Controller; | |
| use Libraries\Wrappers\http\ResponseBuilder; | |
| abstract class BaseController extends Controller | |
| { | |
| /** | |
| * The response builder that is going to be used in order to prepare | |
| * action responses |
| <?php | |
| class DatabaseSeeder extends Seeder { | |
| /** | |
| * Run the database seeds. | |
| * | |
| * @return void | |
| */ | |
| public function run() |
| <?php | |
| use App\Services\Validators\Admin\MailingValidator; | |
| class MailingsController extends \BaseController | |
| { | |
| /** | |
| * Display a listing of the resource. | |
| * GET /mailings |
| #user nobody; | |
| worker_processes 1; | |
| #error_log logs/error.log; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| #pid logs/nginx.pid; | |
| [ | |
| { | |
| "keys": ["ctrl+shift+j","ctrl+shift+j"], | |
| "command": "javatar", | |
| "args": { | |
| "action": { | |
| "name": "main" | |
| } | |
| } | |
| }, |
| <?php | |
| // API access key from Google API's Console | |
| define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
| $registrationIds = array( $_GET['id'] ); | |
| // prep the bundle | |
| $msg = array |
| <?php | |
| $iterator = new \GlobIterator(YOUR_PATH_HERE . '/*.xls', \FilesystemIterator::KEY_AS_FILENAME); | |
| $array = iterator_to_array($iterator); | |
| foreach ($array as $file) { | |
| echo $file->getFileName() . '<br>'; | |
| } |
| $this->info(base_path() . '/*.xls'); | |
| $iterator = new \GlobIterator(base_path() . '/*.xls', \FilesystemIterator::KEY_AS_FILENAME); | |
| $array = iterator_to_array($iterator); | |
| foreach ($array as $file) { | |
| echo $file->getFileName(); | |
| } |
Follow the steps below to setup a local development environment:
Recommended to download latest XQuartz