Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-crm
Overview
Overview
Details
Activity
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
Angel Martin
onestartup-crm
Commits
839749fc
Commit
839749fc
authored
Apr 19, 2018
by
Angel MAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vista de show agregada
parent
ebf62507
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
2 deletions
+51
-2
AdminCrmController.php
src/AdminCrmController.php
+4
-2
show.blade.php
src/views/show.blade.php
+47
-0
No files found.
src/AdminCrmController.php
View file @
839749fc
...
@@ -13,7 +13,7 @@ class AdminCrmController extends Controller
...
@@ -13,7 +13,7 @@ class AdminCrmController extends Controller
public
function
list
()
public
function
list
()
{
{
return
view
(
'crm::list'
)
->
with
(
'var'
,
'varx'
)
;
return
view
(
'crm::list'
);
}
}
public
function
datatable
()
public
function
datatable
()
...
@@ -30,7 +30,9 @@ class AdminCrmController extends Controller
...
@@ -30,7 +30,9 @@ class AdminCrmController extends Controller
public
function
show
(
$id
)
public
function
show
(
$id
)
{
{
$interested
=
Interested
::
find
(
$id
);
return
"asd"
;
return
view
(
'crm::show'
)
->
with
(
'interested'
,
$interested
);
}
}
}
}
src/views/show.blade.php
0 → 100644
View file @
839749fc
@
extends
(
'layouts.admin.admin-layout'
)
@
section
(
'content'
)
<
div
class
='
padding
'>
<div class='
row
'>
<div class='
col
-
md
-
10
offset
-
1
'>
<div class='
box
'>
<div class='
box
-
header
dark
'>
<h3>Detalle del registro</h3>
</div>
<div class='
box
-
body
'
>
<
p
>
Nombre
:
<
b
>
{{
$interested
->
name
}}
</
b
></
p
>
<
p
>
Teléfono
:
<
b
>
{{
$interested
->
phone
}}
</
b
></
p
>
<
p
>
Correo
:
<
b
>
{{
$interested
->
email
}}
</
b
></
p
>
@
if
(
$interested
->
extra1
!=
null
)
<
p
>
Extra
1
:
<
b
>
{{
$interested
->
extra1
}}
</
b
></
p
>
@
endif
@
if
(
$interested
->
extra2
!=
null
)
<
p
>
Extra
2
:
<
b
>
{{
$interested
->
extra2
}}
</
b
></
p
>
@
endif
@
if
(
$interested
->
extra3
!=
null
)
<
p
>
Extra
3
:
<
b
>
{{
$interested
->
extra3
}}
</
b
></
p
>
@
endif
@
if
(
$interested
->
extra4
!=
null
)
<
p
>
Extra
4
:
<
b
>
{{
$interested
->
extra4
}}
</
b
></
p
>
@
endif
@
if
(
$interested
->
extra5
!=
null
)
<
p
>
Extra
5
:
<
b
>
{{
$interested
->
extra5
}}
</
b
></
p
>
@
endif
<
p
>
Landing
:
<
b
>
{{
$interested
->
landing
}}
</
b
></
p
>
<
p
>
Origen
:
<
b
>
{{
$interested
->
origin
}}
</
b
></
p
>
<
p
>
Fecha
de
registro
:
<
b
>
{{
$interested
->
created_at
}}
</
b
></
p
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
@
endsection
\ No newline at end of file
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