Nav apraksta
Gabriel Santiago Plaza 5e4a4a9c25 Update Criterion.php 2 gadus atpakaļ
app Update Criterion.php 2 gadus atpakaļ
bootstrap Bugs, reporte de cursos de programas, y drafts de reportes de programas. 3 gadus atpakaļ
public Gabriel, trabajo hasta 11/17 4 gadus atpakaļ
.bowerrc Added Laravel project and removed sensitive data 4 gadus atpakaļ
.env.php.sample Added sample .env file 4 gadus atpakaļ
.gitattributes First commit 4 gadus atpakaļ
.gitignore Bugs, reporte de cursos de programas, y drafts de reportes de programas. 3 gadus atpakaļ
CONTRIBUTING.md Added Laravel project and removed sensitive data 4 gadus atpakaļ
Documentacion.docx Create Documentacion.docx 3 gadus atpakaļ
Gruntfile.js Added Laravel project and removed sensitive data 4 gadus atpakaļ
artisan Added Laravel project and removed sensitive data 4 gadus atpakaļ
bower.json Added Laravel project and removed sensitive data 4 gadus atpakaļ
composer.json CReo que esta es la que hay 3 gadus atpakaļ
drop_tables.sql Quitando backupprovider 3 gadus atpakaļ
laravel.md Added readme 4 gadus atpakaļ
package.json Added Laravel project and removed sensitive data 4 gadus atpakaļ
phpunit.xml Added Laravel project and removed sensitive data 4 gadus atpakaļ
readme.md Added readme 4 gadus atpakaļ
script.php SubiendoInfo 3 gadus atpakaļ
script_template_fix.php SubiendoInfo 3 gadus atpakaļ
script_template_scales.php SubiendoInfo 3 gadus atpakaļ
script_template_scales_to_scales.php SubiendoInfo 3 gadus atpakaļ
seed.sql Quitando backupprovider 3 gadus atpakaļ
server.php Added Laravel project and removed sensitive data 4 gadus atpakaļ
tabla_estudiantes.jpg Utlimo push con el boton de save diagnostic y tablas terminadas 2 gadus atpakaļ
trabajoRealizado. primer semestre 2020-2021.pdf Los cambios mas recientes unidos con oniel 3 gadus atpakaļ

readme.md

OLAS

Laravel 4.2 Docs

Laravel 4.2 API

Learn Laravel

Setup

Server requirements:

  • PHP 7.1 with Composer
  • MCrypt PHP Extension

Run composer install in the project’s root directory.

Run the application with php artisan serve or see the next section to run in an Apache server.

Apache

Create a virtualhost with the following settings:

DocumentRoot $PATH_TO_PROJECT_ROOT/public
<Directory $PATH_TO_PROJECT_ROOT/public>
    AllowOverride All
    Require all granted
</Directory>

Configuration

Copy .env.php.sample to .env.php and replace with correct settings.

Other options can be set in app/config.

Environments

The environment determines which configuration files will be used. Configuration options for each environment can be set in app/config/$ENV. Options within files in this directory overwrite those in app/config with the same file name.

By default the application will use the local environment unless it’s running with a .edu domain. This can be changed in bootstrap/start.php and more environments can be added here.

Routes

Routes tell the application to which controller the request will be sent or which view will be displayed.

All routes must be registered in app/routes.php.

Migrations

Migrations are used to create the database and make any changes to the schema.

Migrations are found in app/database/migrations and can be generated with php artisan generate:migration $MIGRATION_NAME.

Each migration has an up function that performs the migration and a down function that reverses it.

Views

Views are the HTML structure for each page or section of a page. They use the blade templating engine.

Views are found in app/views.

Controllers

Controllers handle requests and can return a View, Model, or some other data. They are found in app/controllers and usually correspond to a specific Model.

Controllers are in charge of preparing any data that might be necessary for a View, or it might create or update new entries for a Model.

Data can be sent to a View in an array of variables.