##Rotating Pricing Table for Laravel Spark
Can be placed anywhere, try it out on welcome.blade.php
###If you're using team plans
just swap out
$sparkPlans = Spark::plans();
with $sparkPlans = Spark::teamPlans();
<html> | |
<head> | |
</head> | |
<body> | |
<div class="overlay"> | |
<a href="#" class="overlay__title">Little teaser about the content</a> | |
<div class="overlay__content"> | |
<div class="overlay__inner"> | |
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> | |
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and s |
##Rotating Pricing Table for Laravel Spark
Can be placed anywhere, try it out on welcome.blade.php
###If you're using team plans
just swap out
$sparkPlans = Spark::plans();
with $sparkPlans = Spark::teamPlans();
##Team Dropdown for Laravel Spark
Maybe you want a way for users to quickly jump to team settings?
Can be placed anywhere, try it out on user-right.blade.php
user()->currentTeam; ?>
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: supervisord | |
# Required-Start: $remote_fs | |
# Required-Stop: $remote_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Example initscript | |
# Description: This file should be used to construct scripts to be | |
# placed in /etc/init.d. |
<?php | |
// Return our response as quickly as possible. | |
header('Connection: close'); | |
ob_start(); | |
header('HTTP/1.0 200 OK'); | |
ob_end_flush(); | |
flush(); |