Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
da7443ab
Commit
da7443ab
authored
Oct 03, 2014
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak some paths.
parent
0a450983
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
20 additions
and
6 deletions
+20
-6
LogServiceProvider.php
app/Providers/LogServiceProvider.php
+1
-1
app.php
config/app.php
+1
-1
cache.php
config/cache.php
+1
-1
session.php
config/session.php
+1
-1
view.php
config/view.php
+13
-0
.gitignore
storage/framework/.gitignore
+3
-0
.gitignore
storage/framework/cache/.gitignore
+0
-0
.gitignore
storage/framework/sessions/.gitignore
+0
-0
.gitignore
storage/framework/views/.gitignore
+0
-0
.gitignore
storage/views/.gitignore
+0
-2
.gitkeep
storage/work/.gitkeep
+0
-0
No files found.
app/Providers/LogServiceProvider.php
View file @
da7443ab
...
...
@@ -12,7 +12,7 @@ class LogServiceProvider extends ServiceProvider {
*/
public
function
boot
(
Log
$log
)
{
$log
->
useFiles
(
storage_path
()
.
'/l
ogs/l
aravel.log'
);
$log
->
useFiles
(
storage_path
()
.
'/laravel.log'
);
}
/**
...
...
config/app.php
View file @
da7443ab
...
...
@@ -143,7 +143,7 @@ return [
|
*/
'manifest'
=>
storage_path
()
.
'/
meta
'
,
'manifest'
=>
storage_path
()
.
'/
framework
'
,
/*
|--------------------------------------------------------------------------
...
...
config/cache.php
View file @
da7443ab
...
...
@@ -28,7 +28,7 @@ return [
|
*/
'path'
=>
storage_path
()
.
'/cache'
,
'path'
=>
storage_path
()
.
'/
framework/
cache'
,
/*
|--------------------------------------------------------------------------
...
...
config/session.php
View file @
da7443ab
...
...
@@ -44,7 +44,7 @@ return [
|
*/
'files'
=>
storage_path
()
.
'/sessions'
,
'files'
=>
storage_path
()
.
'/
framework/
sessions'
,
/*
|--------------------------------------------------------------------------
...
...
config/view.php
View file @
da7443ab
...
...
@@ -15,6 +15,19 @@ return [
'paths'
=>
[
base_path
()
.
'/resources/views'
],
/*
|--------------------------------------------------------------------------
| Compiled View Path
|--------------------------------------------------------------------------
|
| This option determines where all the compiled Blade templates will be
| stored for your application. Typically, this is within the storage
| directory. However, as usual, you are free to change this value.
|
*/
'compiled'
=>
storage_path
()
.
'/framework/views'
,
/*
|--------------------------------------------------------------------------
| Pagination View
...
...
storage/
meta
/.gitignore
→
storage/
framework
/.gitignore
View file @
da7443ab
routes.php
compiled.php
services.json
\ No newline at end of file
routes.php
services.php
storage/cache/.gitignore
→
storage/
framework/
cache/.gitignore
View file @
da7443ab
File moved
storage/
log
s/.gitignore
→
storage/
framework/session
s/.gitignore
View file @
da7443ab
File moved
storage/
session
s/.gitignore
→
storage/
framework/view
s/.gitignore
View file @
da7443ab
File moved
storage/views/.gitignore
deleted
100644 → 0
View file @
0a450983
*
!.gitignore
\ No newline at end of file
storage/work/.gitkeep
deleted
100644 → 0
View file @
0a450983
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment