I hereby claim:
- I am hskrasek on github.
- I am hunters (https://keybase.io/hunters) on keybase.
- I have a public key whose fingerprint is 2E71 10B0 2D71 9CC4 FCA1 7B7F 7101 08C2 8416 B8B6
To claim this, I am signing this object:
| @extends('layout') | |
| @section('content') | |
| <h1>Create a new task...</h1> | |
| <ul> | |
| @foreach($errors->all() as $error) | |
| <li>{{$error}}</li> | |
| @endforeach | |
| </ul> |
| <?php | |
| class AppointmentController extends \BaseController { | |
| public function index($id) | |
| { | |
| if ($id) { | |
| $appts = $this->appointments->getAllForUser($id); | |
| } else { | |
| $appts = $this->appointments->getAll(); |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| $model = User::with('relation')->find(1); | |
| $cloned = $model->replicate(); | |
| foreach($model->relation as $relation) | |
| { | |
| $cloned->relation()->save($relation); | |
| } |
| <?php | |
| $user = new User; | |
| $includes = "users,posts,comments"; | |
| call_user_func_array([$user, 'with'], explode(',', $includes)); | |
| $user->find(1); |
| >>> Installing Apache Server | |
| !!! IP address not set. Check the Vagrant file. | |
| The following SSH command responded with a non-zero exit status. | |
| Vagrant assumes that this means the command failed! | |
| chmod +x /tmp/vagrant-shell && /tmp/vagrant-shell | |
| Stdout from the command: | |
| >>> Installing Apache Server |
| $output = []; | |
| foreach($stages as $key => $stage) | |
| { | |
| $output[$key] = $stage; | |
| $output[$key][steps] = $stage->steps()->getResults()->toArray(); | |
| } | |
| json_encode($output); |
| >>> Installing Laravel | |
| Installing laravel/laravel (v4.1.0) | |
| - Installing laravel/laravel (v4.1.0) | |
| Downloading: 100% | |
| read failed: Is a directory | |
| read failed: Is a directory | |
| read failed: Is a directory | |
| Created project in /vagrant/laravel | |
| Loading composer repositories with package information |
| // User Settings | |
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
| "font_face": "Inconsolata", | |
| "font_size": 14, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ] | |
| } |
| if $_GET["gamertag"] != null | |
| { | |
| //post code to the cgi-bin scripts with php somehow | |
| //recieve the necessary data, and display it | |
| //??? | |
| //profit | |
| } |