-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelpers.php
99 lines (91 loc) · 2.84 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
<?php
declare(strict_types=1);
use Arcanedev\LaravelHtml\Contracts\{FormBuilder, HtmlBuilder};
use Illuminate\Support\HtmlString;
if ( ! function_exists('form')) {
/**
* Get the Form Builder instance.
*
* @return \Arcanedev\LaravelHtml\Contracts\FormBuilder
*/
function form(): FormBuilder {
return app(FormBuilder::class);
}
}
if ( ! function_exists('html')) {
/**
* Get the HTML Builder instance.
*
* @return \Arcanedev\LaravelHtml\Contracts\HtmlBuilder
*/
function html(): HtmlBuilder {
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(string $url, $title = null, array $attributes = [], $secure = null, $escaped = true): HtmlString {
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(string $url, $title = null, array $attributes = [], $secure = null): HtmlString {
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(string $name, $title = null, array $params = [], array $attributes = [], $escaped = true): HtmlString {
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(string $action, $title = null, array $params = [], array $attributes = [], $escaped = true): HtmlString {
return html()->linkAction($action, $title, $params, $attributes, $escaped);
}
}