-
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.
criando pagina do parceirto e do administrador
- Loading branch information
1 parent
7199153
commit 3be88a4
Showing
1,894 changed files
with
201,792 additions
and
240 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ yarn-error.log | |
/.fleet | ||
/.idea | ||
/.vscode | ||
/views/startbootstrap-sb-admin-2/* |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
*.sqlite* | ||
views/startbootstrap-sb-admin-2/* |
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 |
---|---|---|
|
@@ -35,6 +35,27 @@ public function run(): void | |
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
], | ||
[ | ||
'codigo' => 'Daniel', | ||
'name' => 'Daniel Torres', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
], | ||
[ | ||
'codigo' => 'Tozzi', | ||
'name' => 'Marcos Tozzi', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
], | ||
[ | ||
'codigo' => 'Victor', | ||
'name' => 'Victor', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('123456'), | ||
'created_at' => date("Y-m-d H:i:s") | ||
] | ||
]); | ||
} | ||
|
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,8 @@ | ||
@extends('site.layout.master-dashboard') | ||
|
||
|
||
@section('content') | ||
@include('site.layout.lista-usuarios') | ||
|
||
@include('site.layout.lista-leads') | ||
@endsection |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,67 @@ | ||
<div class="row"> | ||
<!-- Earnings (Monthly) Card Example --> | ||
<div class="col-xl-3 col-md-6 mb-4"> | ||
<div class="card border-left-primary shadow h-100 py-2"> | ||
<div class="card-body"> | ||
<div class="row no-gutters align-items-center"> | ||
<div class="col mr-2"> | ||
<div class="text-xs font-weight-bold text-primary text-uppercase mb-1"> | ||
Parceiros Cadastrados (Mês)</div> | ||
<div class="h5 mb-0 font-weight-bold text-gray-800">{{ $quantidade_lead }}</div> | ||
</div> | ||
<div class="col-auto"> | ||
<i class="fas fa-calendar fa-2x text-gray-300"></i> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Earnings (Monthly) Card Example --> | ||
<div class="col-xl-3 col-md-6 mb-4"> | ||
<div class="card border-left-success shadow h-100 py-2"> | ||
<div class="card-body"> | ||
<div class="row no-gutters align-items-center"> | ||
<div class="col mr-2"> | ||
<div class="text-xs font-weight-bold text-success text-uppercase mb-1"> | ||
Link de Divulgação | ||
</div> | ||
<div> | ||
<a class="btn btn-primary h5 mb-0 font-weight-bold text-white-800" href="{{ route('site.home') }}">{{ route('site.home') }}?resource={{$user->codigo}}</a> | ||
</div> | ||
</div> | ||
<div class="col-auto"> | ||
<i class="fas fa-dollar-sign fa-2x text-gray-300"></i> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card shadow mb-4"> | ||
<div class="card-header py-3"> | ||
<h6 class="m-0 font-weight-bold text-primary">Leads do Parceiro</h6> | ||
</div> | ||
<div class="card-body"> | ||
<div class="table-responsive"> | ||
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> | ||
<thead> | ||
<tr> | ||
<th>Nome</th> | ||
<th>Email</th> | ||
<th>Data Cadastro</th> | ||
</tr> | ||
</thead> | ||
@foreach ($list_lead as $lead) | ||
<tbody> | ||
<tr> | ||
<td>{{ $lead->Nome }}</td> | ||
<td>{{ $lead->email }}</td> | ||
<td>{{ $lead->created_at }}</td> | ||
</tr> | ||
</tbody> | ||
@endforeach | ||
</table> | ||
</div> | ||
</div> | ||
</div> |
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,27 @@ | ||
<div class="card shadow mb-4"> | ||
<div class="card-header py-3"> | ||
<h6 class="m-0 font-weight-bold text-primary">Parceiros Comercias Cadastrados</h6> | ||
</div> | ||
<div class="card-body"> | ||
<div class="table-responsive"> | ||
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> | ||
<thead> | ||
<tr> | ||
<th>Código</th> | ||
<th>Nome</th> | ||
<th>Email</th> | ||
</tr> | ||
</thead> | ||
@foreach ($list_user as $user) | ||
<tbody> | ||
<tr> | ||
<td>{{ $user->codigo }}</td> | ||
<td>{{ $user->name }}</td> | ||
<td>{{ $user->email }}</td> | ||
</tr> | ||
</tbody> | ||
@endforeach | ||
</table> | ||
</div> | ||
</div> | ||
</div> |
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
Oops, something went wrong.