Wednesday, July 23, 2014

Tuesday, July 1, 2014

Laravel Resource Controller

Actions Handled By Resource Controller

VerbPathActionRoute Name
GET/resourceindexresource.index
GET/resource/createcreateresource.create
POST/resourcestoreresource.store
GET/resource/{resource}showresource.show
GET/resource/{resource}/editeditresource.edit
PUT/PATCH/resource/{resource}updateresource.update
DELETE/resource/{resource}destroyresource.destroy

App structure

app/views/
  partials/
    main_menu
  layouts/
      front
      main
      public
  users/
      create
      edit
      index
      show


     
app ...
public/
   js
   css
   libs
       jquery-ui
       bootstrap
   imgs
   assets
  

tutorial republic similar to w3cSchool and compileitonline