Git Product home page Git Product logo

laravel_5.1_clean's Introduction

Configurations:

changed file permission for Storage to 777 but left public as 755.

Changes made from 5.0 to 5.1

added files and directories to views:

views > app.blade.php
	- configured scripts and css libraries. e.g. sass, vue, bootstrap
	- in this master view page we changed the app.css to all.css for a future gulp compiled file
	
partials > nav.blade.php
	
auth >
	password.blade.php
	reset.blade.php
	register.blade.php
	reset.blade.php

emails directory > password.blade.php

errors directory > 503.blade.php

added files and directories to resources > assets:

assets > sass
sass > partials
partials > _colors.scss, _headers.scss
sass > app.scss

Deleted: less directory

added files and directories to public

css > vendor > bootstrap.min.css 
	copy pasted script from cdn
	
js > vendor > vue-resource.min.json
	copy pasted script from cdn

configure gulp file

in the gulpfile.js we edit the less to sass so we can compile with gulp

	elixir(function(mix) {
		mix.sass('app.scss');

		mix.styles([
		'vendor/bootstrap.min.css',
		'app.css'
		], null, 'public/css');
	});


changed gulp version to 3.9.0 in package.json file

updated routes and controllers

- added Authentication routes
- added PagesController@home routes

added controllers

Auth > PagesController.php
	-copy pasted file

left alone these directories, with different files than 5.0

Middleware
Providers

laravel_5.1_clean's People

Contributors

chrisrching avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.