7 lines
		
	
	
		
			316 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			316 B
		
	
	
	
		
			PHP
		
	
	
	
@if(count(setting('app-footer-links', [])) > 0)
 | 
						|
<footer>
 | 
						|
    @foreach(setting('app-footer-links', []) as $link)
 | 
						|
        <a href="{{ $link['url'] }}" target="_blank">{{ strpos($link['label'], 'trans::') === 0 ? trans(str_replace('trans::', '', $link['label'])) : $link['label'] }}</a>
 | 
						|
    @endforeach
 | 
						|
</footer>
 | 
						|
@endif |