Skip to content

Commit a5ab981

Browse files
Merge pull request #1 from corina-coste/develop
Navbars and Footers
2 parents 634d9e2 + ce3cb7c commit a5ab981

File tree

229 files changed

+43228
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+43228
-131
lines changed

app/Http/Livewire/Auth/SignIn.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire\Auth;
4+
5+
use Livewire\Component;
6+
7+
class SignIn extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.auth.sign-in');
12+
}
13+
}

app/Http/Livewire/Auth/SignUp.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire\Auth;
4+
5+
use Livewire\Component;
6+
7+
class SignUp extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.auth.sign-up');
12+
}
13+
}

app/Http/Livewire/Billing.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire;
4+
5+
use Livewire\Component;
6+
7+
class Billing extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.billing');
12+
}
13+
}

app/Http/Livewire/Dashboard.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire;
4+
5+
use Livewire\Component;
6+
7+
class Dashboard extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.dashboard')->layout('layouts.app');
12+
}
13+
}

app/Http/Livewire/Profile.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire;
4+
5+
use Livewire\Component;
6+
7+
class Profile extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.profile');
12+
}
13+
}

app/Http/Livewire/Rtl.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire;
4+
5+
use Livewire\Component;
6+
7+
class Rtl extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.rtl');
12+
}
13+
}

app/Http/Livewire/Tables.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Livewire;
4+
5+
use Livewire\Component;
6+
7+
class Tables extends Component
8+
{
9+
public function render()
10+
{
11+
return view('livewire.tables');
12+
}
13+
}

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"fruitcake/laravel-cors": "^2.0",
1111
"guzzlehttp/guzzle": "^7.0.1",
1212
"laravel/framework": "^8.12",
13-
"laravel/tinker": "^2.5"
13+
"laravel/tinker": "^2.5",
14+
"livewire/livewire": "^2.4"
1415
},
1516
"require-dev": {
1617
"facade/ignition": "^2.5",

composer.lock

Lines changed: 73 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

database/factories/UserFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public function definition()
2828
'email_verified_at' => now(),
2929
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
3030
'remember_token' => Str::random(10),
31+
'mobile' => $this->faker->phoneNumber
3132
];
3233
}
3334

0 commit comments

Comments
 (0)