This repository has been archived by the owner on Dec 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
115 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,9 @@ public function about() | |
return view('about'); | ||
} | ||
|
||
public function export() | ||
{ | ||
return view('export'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
@extends('layout') | ||
|
||
@section('title', 'Exporter les données') | ||
|
||
@section('content') | ||
|
||
<h1>Export</h1> | ||
|
||
<h2>Export des loyers</h2> | ||
|
||
<p>Tous les logements avec leurs loyers au format :</p> | ||
<ul> | ||
<li><a href="/api/rentsExport/json">JSON</a></li> | ||
</ul> | ||
|
||
<p>Tous les loyers avec leur logement au format :</p> | ||
<ul> | ||
<li><a href="/api/rentsExport/csv">CSV</a></li> | ||
</ul> | ||
|
||
@stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters