^https?://((www|\w\w)\.)?linkedin.com/((in/[^/]+/?)|(pub/[^/]+/((\w|\d)+/?){3}))$
example:
http://uk.linkedin.com/pub/some-name/1/1b3/b45/
<div id="app"> | |
<highlightable | |
@share="onShare" | |
@highlight="onHighlight" | |
> | |
<p> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eveniet at debitis deserunt, optio rem eaque obcaecati non possimus nisi assumenda architecto exercitationem dolore quo praesentium, deleniti reiciendis sed ab nihil! | |
</p> | |
</highlightable> | |
<p> |
Set-ExecutionPolicy RemoteSigned
You need to configure this setting only once on your computer, not every time you connect.
$UserCredential = Get-Credential
Pre-requisites:
Please note, registry keys checked for pending reboot:
W2K3 = "SYSTEM\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations"
<?php | |
use App\Account; | |
use App\User; | |
use Illuminate\Database\Seeder; | |
use Symfony\Component\Console\Helper\ProgressBar; | |
use Symfony\Component\Console\Output\ConsoleOutput; | |
class LocalUserSeeder extends Seeder | |
{ |
Example of Laravel relationship where condition.
$users = User::with('account', 'role')->whereHas('role', function ($q) {
$q->where('name', 'Administrator');
})->get();
<?php | |
namespace App\Helpers; | |
use App\Account; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Validator; | |
class FormHelper | |
{ |
/** | |
* The following block of code is to load all JQuery functions and methods | |
* | |
* | |
* | |
*/ | |
$(document).ready(function () { | |
// load file upload display text function | |
fileUpload(); | |
<?php | |
namespace App\Http\Controllers\External; | |
use Illuminate\Http\Request; | |
use App\Http\Controllers\Controller; | |
class AwardsSubmissionController extends Controller | |
{ | |
/** |
<?php | |
namespace App\Http\Controllers\External; | |
use Illuminate\Http\Request; | |
use App\Http\Controllers\Controller; | |
class DocumentController extends Controller | |
{ | |
/** |