PHP Classes

File: resources/views/components/language-list.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   LaraCMS   resources/views/components/language-list.blade.php   Download  
File: resources/views/components/language-list.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: LaraCMS
Content management system based on Laravel
Author: By
Last change:
Date: 1 year ago
Size: 249 bytes
 

Contents

Class file image Download
@foreach ($langs as $language)
    <div class="col-6">
        <a href="{{ $language->url }}">
            <img src="{{ $language->flag }}" width="20%"> {{ strtoupper( $language->code ) }} ({{ $language->name }})
        </a>
    </div>
@endforeach