File tree 2 files changed +13
-1
lines changed
src/Flynsarmy/DbBladeCompiler
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,14 @@ public function __construct(DbBladeCompiler $bladeCompiler)
13
13
{
14
14
parent ::__construct ($ bladeCompiler );
15
15
}
16
+
17
+ /**
18
+ * @param string $compiled_path
19
+ * @param array $data
20
+ * @return string
21
+ */
22
+ public function getContent (string $ compiled_path , array $ data )
23
+ {
24
+ return $ this ->evaluatePath ($ compiled_path , $ data );
25
+ }
16
26
}
Original file line number Diff line number Diff line change @@ -109,8 +109,10 @@ protected function getContents()
109
109
{
110
110
$ field = $ this ->config ->get ('db-blade-compiler.model_property ' );
111
111
$ this ->path ->{$ field } = $ this ->content_field ;
112
+ $ compiler = $ this ->engine ->getCompiler ();
113
+ $ compiler ->compile ($ this ->path );
112
114
113
- return parent :: getContents ( );
115
+ return $ this -> engine -> getContent ( $ compiler -> getCompiledPath ( $ this -> path ), $ this -> data );
114
116
}
115
117
116
118
/**
You can’t perform that action at this time.
0 commit comments