', $value); } /** * Rewrites Blade structure openings into PHP structure openings. * * @param string $value * @return string */ protected static function compile_structure_openings($value) { $pattern = '/(\s*)@(if|elseif|foreach|for|while)(\s*\(.*\))/'; return preg_replace($pattern, '$1', $value); } /** * Rewrites Blade structure closings into PHP structure closings. * * @param string $value * @return string */ protected static function compile_structure_closings($value) { $pattern = '/(\s*)@(endif|endforeach|endfor|endwhile)(\s*)/'; return preg_replace($pattern, '$1$3', $value); } /** * Rewrites Blade else statements into PHP else statements. * * @param string $value * @return string */ protected static function compile_else($value) { return preg_replace('/(\s*)@(else)(\s*)/', '$1$3', $value); } /** * Rewrites Blade @yield statements into Section statements. * * The Blade @yield statement is a shortcut to the Section::yield method. * * @param string $value * @return string */ protected static function compile_yields($value) { $pattern = static::matcher('yield'); return preg_replace($pattern, '$1', $value); } /** * Rewrites Blade @section statements into Section statements. * * The Blade @section statement is a shortcut to the Section::start method. * * @param string $value * @return string */ protected static function compile_section_start($value) { $pattern = static::matcher('section'); return preg_replace($pattern, '$1', $value); } /** * Rewrites Blade @endsection statements into Section statements. * * The Blade @endsection statement is a shortcut to the Section::stop method. * * @param string $value * @return string */ protected static function compile_section_end($value) { return preg_replace('/@endsection/', '', $value); } /** * Get the regular expression for a generic Blade function. * * @param string $function * @return string */ protected static function matcher($function) { return '/(\s*)@'.$function.'(\s*\(.*\))/'; } }