Skip to content

Instantly share code, notes, and snippets.

View Gertiozuni's full-sized avatar
🏠
Working from home

Gerti Ozuni Gertiozuni

🏠
Working from home
View GitHub Profile
@Gertiozuni
Gertiozuni / AwsController.php
Created September 20, 2018 07:59 — forked from josephspurrier/AwsController.php
Laravel 5.2 Workflow with Service Providers
<?php
// File Location: projectroot/app/Http/Controllers/AwsController.php
namespace App\Http\Controllers;
use \App;
use \AwsS3;
class AwsController extends Controller
@Gertiozuni
Gertiozuni / react-file-upload.js
Created April 18, 2018 08:08 — forked from AshikNesin/react-file-upload.js
Simple React File Upload
import React from 'react'
import axios, { post } from 'axios';
class SimpleReactFileUpload extends React.Component {
constructor(props) {
super(props);
this.state ={
file:null
}