This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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 ('layouts.master') | |
@section ('head.title') | |
{{trans('messages.list_group')}} | |
@stop | |
@section ('head.css') | |
<link href="plugins/datatables/dataTables.bootstrap.css" rel="stylesheet" type="text/css" /> | |
@stop | |
@section('body.content') |
This file contains 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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>Enable And Disable jQuery Event Handlers</title> | |
<style type="text/css"> | |
#modal { | |
background-color: #FAFAFA ; | |
border: 1px solid #C0C0C0 ; | |
display: none ; |
This file contains 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; | |
use App\Calendar; | |
use App\Employee; | |
use App\Http\Requests\AddFeatureRequest; | |
use Illuminate\Http\Request; | |
class CalendarController extends AdminController { |
This file contains 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 ('layouts.master') | |
@section ('head.title') | |
{{trans('messages.list_group')}} | |
@stop | |
@section('body.content') | |
<script type="text/javascript" src="{{ Asset('jqueryganttview/jquery-1.4.2.js') }}"></script> | |
<script type="text/javascript" src="{{ Asset('jqueryganttview/date.js') }}"></script> |
This file contains 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; | |
use Illuminate\Database\Eloquent\Model; | |
class NoteStatus extends Model { | |
protected $table = 'note_statuses'; | |
protected $fillable = [ | |
'candidate_id', |
This file contains 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 ('layouts.master') | |
@section ('head.title') | |
{{trans('messages.list_group')}} | |
@stop | |
@section ('head.css') | |
<link href="plugins/datatables/dataTables.bootstrap.css" rel="stylesheet" type="text/css" /> | |
<script type="text/javascript" src="{{ Asset('jquery-accessible-tabs/jquery.accTabs.min.js') }}" ></script> | |
<link rel="stylesheet" type="text/css" href="{{ Asset('jquery-accessible-tabs/jquery-accessible-tabs.css') }}"> |
This file contains 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; | |
use App; | |
use App\Employee; | |
use Excel; | |
use App\Device; | |
use App\InformationDevice; |
This file contains 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
foreach ($interviews as $key => $value) : ?> | |
<tr> | |
<input type="hidden" name="id" value="{{ $value->id }}"/> | |
<td><?php echo $index; $index++; ?></td> | |
<td>{{ $value->candidate()->first()->last_name." ".$value->candidate()->first()->first_name }}</td> | |
<td> | |
<?php | |
$positions = $value->candidate()->first()->positions()->get(); | |
foreach ($positions as $k_p => $v_p) { | |
echo "<p>".$v_p->name."</p>"; |
This file contains 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; | |
use App; | |
use App\Employee; | |
use Excel; | |
use App\Device; | |
use App\InformationDevice; |
OlderNewer