-
Notifications
You must be signed in to change notification settings - Fork 2
/
helpers.php
103 lines (96 loc) · 2.7 KB
/
helpers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
use Arcanedev\LaravelHtml\Contracts\FormBuilder;
use Arcanedev\LaravelHtml\Contracts\HtmlBuilder;
if ( ! function_exists('form')) {
/**
* Get the Form Builder instance.
*
* @return \Arcanedev\LaravelHtml\Contracts\FormBuilder
*/
function form()
{
return app(FormBuilder::class);
}
}
if ( ! function_exists('html')) {
/**
* Get the HTML Builder instance.
*
* @return \Arcanedev\LaravelHtml\Contracts\HtmlBuilder
*/
function html()
{
return app(HtmlBuilder::class);
}
}
/* ------------------------------------------------------------------------------------------------
| Link Helpers
| ------------------------------------------------------------------------------------------------
*/
if ( ! function_exists('link_to')) {
/**
* Generate a HTML link.
*
* @param string $url
* @param string $title
* @param array $attributes
* @param bool $secure
* @param bool $escaped
*
* @return \Illuminate\Support\HtmlString
*/
function link_to($url, $title = null, $attributes = [], $secure = null, $escaped = true)
{
return html()->link($url, $title, $attributes, $secure, $escaped);
}
}
if ( ! function_exists('link_to_asset')) {
/**
* Generate a HTML link to an asset.
*
* @param string $url
* @param string $title
* @param array $attributes
* @param bool $secure
*
* @return \Illuminate\Support\HtmlString
*/
function link_to_asset($url, $title = null, $attributes = [], $secure = null)
{
return html()->linkAsset($url, $title, $attributes, $secure);
}
}
if ( ! function_exists('link_to_route')) {
/**
* Generate a HTML link to a named route.
*
* @param string $name
* @param string $title
* @param array $params
* @param array $attributes
* @param bool $escaped
*
* @return \Illuminate\Support\HtmlString
*/
function link_to_route($name, $title = null, $params = [], $attributes = [], $escaped = true)
{
return html()->linkRoute($name, $title, $params, $attributes, $escaped);
}
}
if ( ! function_exists('link_to_action')) {
/**
* Generate a HTML link to a controller action.
*
* @param string $action
* @param string $title
* @param array $params
* @param array $attributes
* @param bool $escaped
*
* @return \Illuminate\Support\HtmlString
*/
function link_to_action($action, $title = null, $params = [], $attributes = [], $escaped = true)
{
return html()->linkAction($action, $title, $params, $attributes, $escaped);
}
}