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; | |
| use App\Http\Requests; | |
| use App\Http\Controllers\Controller; | |
| use App\Candidate; | |
| use App\Http\Requests\AddCandidateRequest; | |
| use Input; | |
| use App\File; | |
| use App\Http\Requests\EditCandidateRequest; |
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 ('layouts.master') | |
| @section ('head.title') | |
| {{trans('messages.list_group')}} | |
| @stop | |
| @section ('head.css') | |
| <link href="{{ Asset('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 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
| -- phpMyAdmin SQL Dump | |
| -- version 4.4.12 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Host: localhost | |
| -- Generation Time: Jul 27, 2015 at 10:21 PM | |
| -- Server version: 5.5.44-0ubuntu0.14.04.1 | |
| -- PHP Version: 5.5.9-1ubuntu4.11 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv='Content-type' content='text/html; charset=utf-8'> | |
| <title>Test index5 React js</title> | |
| <script type="text/javascript" src="jquery.js"></script> | |
| <script src="react/build/react.js"></script> | |
| <script src="react/build/JSXTransformer.js"></script> | |
| </head> |
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('back.layouts.main') | |
| @section('title', 'Works managements') | |
| @section('content') | |
| <!-- dropzone --> | |
| <script src="{{ Asset('dropzone/dropzone.js') }}" type="text/javascript"></script> | |
| <link rel="stylesheet" href="{{ Asset('dropzone/dropzone.css') }}"> | |
| <style type="text/css"> | |
| .clearfix:after { |
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\Back; | |
| use Illuminate\Http\Request; | |
| use App\Http\Controllers\Controller; | |
| use App\Work; | |
| use Validator; | |
| use App\Image; |
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
| using System; | |
| using Android.App; | |
| using Android.Content; | |
| using Android.Runtime; | |
| using Android.Views; | |
| using Android.Widget; | |
| using Android.OS; | |
| namespace bom1 |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using Android.App; | |
| using Android.Content; | |
| using Android.OS; | |
| using Android.Runtime; |
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
| TypeError: Cannot read property 'redis' of undefined | |
| at Object.<anonymous> (QueueService.js:4:29) | |
| at Module._compile (module.js:435:26) | |
| at loader (B:\exproject\nodejs\hohodaapi\node_modules\babel-register\lib\node.js:158:5) | |
| at Object.require.extensions.(anonymous function) [as .js] (B:\exproject\nodejs\hohodaapi\node_modules\babel-register\lib\node.js:168:7) | |
| at Module.load (module.js:356:32) | |
| at Function.Module._load (module.js:311:12) | |
| at Module.require (module.js:366:17) | |
| at require (module.js:385:17) | |
| at Object.<anonymous> (B:\exproject\nodejs\hohodaapi\start.js:20:13) |
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
| Aug 21, 2016 2:31:47 PM org.apache.catalina.core.StandardContext listenerStart | |
| SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener | |
| org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.io.FileNotFoundException: class path resource [database.properties] cannot be opened because it does not exist | |
| at org.springframework.beans.factory.config.PropertyResourceConfigurer.postProcessBeanFactory(PropertyResourceConfigurer.java:89) | |
| at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:265) | |
| at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:162) | |
| at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:610) | |
| at org.springfr |