File tree 6 files changed +19
-6
lines changed
6 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public function anyData()
60
60
61
61
$ dt = Datatables::of ($ clients )
62
62
->addColumn ('namelink ' , function ($ clients ) {
63
- return '<a href="clients/ ' . $ clients ->id .'"> ' .$ clients ->name .'</a> ' ;
63
+ return '<a href=" ' . route ( ' clients.show ' , $ clients ->id ) .'"> ' .$ clients ->name .'</a> ' ;
64
64
})
65
65
->addColumn ('emaillink ' , function ($ clients ) {
66
66
return '<a href="mailto: ' .$ clients ->primary_email .'"> ' .$ clients ->primary_email .'</a> ' ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ public function myData()
102
102
103
103
$ dt = Datatables::of ($ contacts )
104
104
->addColumn ('namelink ' , function ($ contacts ) {
105
- return '<a href="contacts/ ' . $ contacts ->id .'"> ' .$ contacts ->name .'</a> ' ;
105
+ return '<a href=" ' . route ( ' contacts.show ' , $ contacts ->id ) .'"> ' .$ contacts ->name .'</a> ' ;
106
106
})
107
107
->addColumn ('emaillink ' , function ($ contacts ) {
108
108
return '<a href="mailto: ' .$ contacts ->email .'"> ' .$ contacts ->email .'</a> ' ;
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public function anyData()
67
67
68
68
return Datatables::of ($ leads )
69
69
->addColumn ('titlelink ' , function ($ leads ) {
70
- return '<a href="leads/ ' . $ leads ->id .'"> ' .$ leads ->title .'</a> ' ;
70
+ return '<a href=" ' . route ( ' leads.show ' , $ leads ->id ) .'"> ' .$ leads ->title .'</a> ' ;
71
71
})
72
72
->editColumn ('user_created_id ' , function ($ leads ) {
73
73
return $ leads ->creator ->name ;
@@ -92,7 +92,7 @@ public function myData()
92
92
93
93
return Datatables::of ($ leads )
94
94
->addColumn ('titlelink ' , function ($ leads ) {
95
- return '<a href="leads/ ' . $ leads ->id .'"> ' .$ leads ->title .'</a> ' ;
95
+ return '<a href=" ' . route ( ' leads.show ' , $ leads ->id ) .'"> ' .$ leads ->title .'</a> ' ;
96
96
})
97
97
->editColumn ('user_created_id ' , function ($ leads ) {
98
98
return $ leads ->creator ->name ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
return [
4
+ /*
5
+ |--------------------------------------------------------------------------
6
+ | Application Name and Version
7
+ |--------------------------------------------------------------------------
8
+ |
9
+ | These values are used to display the application name and version.
10
+ | Set APP_NAME in your ".env" file is you wish to use a custom name.
11
+ |
12
+ */
13
+
14
+ 'name ' => env ('APP_NAME ' , 'Flarepoint CRM ' ),
15
+ 'version ' => ('1.3.7 ' ),
16
+
4
17
/*
5
18
|--------------------------------------------------------------------------
6
19
| Application Environment
Original file line number Diff line number Diff line change 5
5
<meta http-equiv =" X-UA-Compatible" content =" IE=edge" >
6
6
<meta name =" viewport" content =" width=device-width, initial-scale=1" >
7
7
<meta name =" robots" content =" noindex, nofollow" >
8
- <title >FlarePoint </title >
8
+ <title >{{ config ( ' app.name ' ) } } </title >
9
9
10
10
<!-- Fonts -->
11
11
<link href =" https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel =' stylesheet'
Original file line number Diff line number Diff line change 2
2
<html lang =" en" >
3
3
<head >
4
4
<meta charset =" UTF-8" >
5
- <title >Flarepoint CRM </title >
5
+ <title >{{ config ( ' app.name ' ) } } v {{ config ( ' app.version ' ) } } </title >
6
6
<link href =" {{ URL:: asset (' css/jasny-bootstrap.css' ) } }" rel =" stylesheet" type =" text/css" >
7
7
<link href =" {{ URL:: asset (' css/font-awesome.min.css' ) } }" rel =" stylesheet" type =" text/css" >
8
8
<link href =" {{ URL:: asset (' css/jquery.dataTables.min.css' ) } }" rel =" stylesheet" type =" text/css" >
You can’t perform that action at this time.
0 commit comments