Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
rats4final committed Nov 24, 2022
2 parents a7d52e3 + b234c4f commit 5ef6539
Show file tree
Hide file tree
Showing 153 changed files with 65,668 additions and 233 deletions.
6 changes: 4 additions & 2 deletions app/Http/Controllers/CitasController.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function index()

public function create()
{
$User =User::get();
$User = User::get();
return view('admin.Citas.create');
}

Expand All @@ -32,12 +32,14 @@ public function store(Request $request)

public function show($id)
{
$Citas =Citas::find($id);
$Citas = Citas::find($id);
return view('admin.Citas.show')->with('Citas', $Citas);
}

public function edit($id)
{
$User = User::all();

$Citas =Citas::find($id);
return view('admin.Citas.edit')->with('Citas', $Citas);
}
Expand Down
451 changes: 224 additions & 227 deletions composer.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Binary file added public/css/bootstrap copy/.DS_Store
Binary file not shown.
12 changes: 12 additions & 0 deletions public/css/bootstrap copy/_media.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.media {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start; }

.media-body {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; }
Binary file added public/css/bootstrap copy/mixins/.DS_Store
Binary file not shown.
Empty file.
Empty file.
Empty file.
10 changes: 10 additions & 0 deletions public/css/bootstrap copy/utilities/_stretched-link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
pointer-events: auto;
content: "";
background-color: rgba(0, 0, 0, 0); }
6 changes: 6 additions & 0 deletions public/css/bootstrap.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions public/css/bootstrap.min copy.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions public/css/bootstrap.min.css

Large diffs are not rendered by default.

Binary file added public/css/bootstrap/.DS_Store
Binary file not shown.
12 changes: 12 additions & 0 deletions public/css/bootstrap/_media.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.media {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start; }

.media-body {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; }
Binary file added public/css/bootstrap/mixins/.DS_Store
Binary file not shown.
Empty file.
Empty file.
Empty file.
10 changes: 10 additions & 0 deletions public/css/bootstrap/utilities/_stretched-link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
pointer-events: auto;
content: "";
background-color: rgba(0, 0, 0, 0); }
Loading

0 comments on commit 5ef6539

Please sign in to comment.