@extends('base')
@section('title', __('Translation Home'))
@section('content')
@php
use Illuminate\Support\Facades\Auth;
$version = config('app.version');
$language = config('app.locale');
$auth = Auth::check();
@endphp
@if(isset($service[1]))
@include('translation::layouts.components.home.translation-row-item', ['translation'=>$service[1]])
@endif
@if(isset($service[2]))
@include('translation::layouts.components.home.translation-row-item', ['translation'=>$service[2]])
@endif
@if(isset($service[3]))
@include('translation::layouts.components.home.translation-card', ['translation'=>$service[3]])
@endif
@if(isset($service[4]))
@include('translation::layouts.components.home.translation-card', ['translation'=>$service[4]])
@endif
@if(isset($service[5]))
@include('translation::layouts.components.home.translation-card', ['translation'=>$service[5]])
@endif
@if(isset($service[6]))
@include('translation::layouts.components.home.translation-card', ['translation'=>$service[6]])
@endif
@if(isset($service[7]))
@include('translation::layouts.components.home.translation-row-item', ['translation'=>$service[7]])
@endif
@if(isset($service[8]))
@include('translation::layouts.components.home.translation-row-item-large', ['translation'=>$service[8]])
@endif
@endsection