###Learning objective box
[open .objectives]-content-[close]
###Glossary text
[open a .glossary]**glossary text**[close a]
###Flash forward pink box
[open .objective.flash-forward]-content-[close]
###Did you know blue box
###Learning objective box
[open .objectives]-content-[close]
###Glossary text
[open a .glossary]**glossary text**[close a]
###Flash forward pink box
[open .objective.flash-forward]-content-[close]
###Did you know blue box
<?php | |
use \Exception; | |
use Carbon\Carbon; | |
class Scheduler { | |
/** | |
* Scheduler starting date | |
* |
<?php | |
use Orchestra\Support\Facades\Theme; | |
class FooController extends BaseController { | |
public function show($moduleSlug) | |
{ | |
Theme::setTheme('module'); | |
return View::make('eisai/module::show'); |
<?php namespace Eisai\Foundation\Presenter; | |
use Orchestra\Support\Str; | |
use Illuminate\Support\Facades\Auth; | |
use Illuminate\Support\Facades\HTML; | |
use Orchestra\Support\Facades\Form; | |
use Orchestra\Support\Facades\Table; | |
use Orchestra\Html\Table\TableBuilder; | |
use Orchestra\Foundation\Presenter\AbstractablePresenter; |
Event::listen('auth.login', function ($user) { | |
if ($user->name === 'Ahmad') { | |
$user->name = 'Ahmad Shah'; | |
} | |
}); | |
casper.test.begin('Test tax incentive login page', 2, function (test) { | |
casper.start('http://dev.taxincentive.flexworklife.my', function () { | |
test.assertTitle('Flexworklife - Tax Incentive', 'Page title is correct'); | |
test.assertExists('form', 'Login form exists'); | |
}); | |
casper.run(function () { | |
test.done(); | |
}); | |
}); |
<?php namespace Eisai\Support\Traits; | |
use Rhumsaa\Uuid\Uuid; | |
use Illuminate\Support\Facades\File; | |
use Symfony\Component\HttpFoundation\File\UploadedFile; | |
trait UploadableTrait { | |
/** | |
* [store description] |
<?php | |
use Ochestra\Model\User; | |
use Orchestra\Support\Facades\Notifier; | |
trait NotifiableTrait { | |
/** | |
* Send email notification to user | |
* |
<?php include_once("../_config.php"); | |
$appcate = $_SESSION['jenis_pelanggan']; | |
$sql = DBquery("SELECT a.id_pelanggan,a.nama,b.id_pelanggan,alamat1,alamat2,poskod,bandar,id_negeri,no_tel,no_fax, | |
FROM li_pelanggan a,li_alamat b | |
WHERE a.id_pelanggan = '" . $_SESSION['id_pelanggan'] . "' | |
AND a.id_pelanggan = b.id_pelanggan | |
AND a.jenis_pelanggan = '".$appcate."'"); |