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
# Quicker navigation | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
alias .....="cd ../../../.." | |
alias ......="cd ../../../../.." | |
alias .......="cd ../../../../../.." | |
# Aliases | |
alias ll='ls -l' |
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
@extends($viewNamespace . '::layouts.master') | |
@section('title', 'Dashboard') | |
@section('page-title', 'Dashboard') | |
@section('page-subtitle', '') | |
@section('content') | |
<div class="box"> | |
<div class="box-body" id="form"> | |
{!! BootForm::open()->post()->action(route('users.index')) !!} | |
{!! BootForm::text('First Name', 'first_name') !!} | |
<div v-repeat="items" class="form-group"> |
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 | |
/** | |
* @package Dashboard | |
* @version 1.0.0 | |
* @author Ian Olson <[email protected]> | |
* @license MIT | |
* @copyright 2015, Odot Media LLC | |
* @link https://odotmedia.com | |
*/ |
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 namespace App\Http\Controllers\Api\V1; | |
use App\Http\Controllers\Controller; | |
use App\Http\Requests; | |
use Illuminate\Http\Request; | |
use Tymon\JWTAuth\Facades\JWTAuth; | |
use Tymon\JWTAuth\Exceptions\JWTException; | |
class AuthenticateController extends Controller | |
{ |
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 | |
namespace AdvisorsExcel\ImportBundle\Entity; | |
/** | |
* Class EntityPlus | |
* | |
* Parent class for generic Doctrine entities that provides a convenience method for populating the entity | |
* from an associative array. | |
*/ |
NewerOlder