@extends('layouts.site') @section('content') @php $lang = app()->getLocale(); $name = 'name_' . $lang; $details = 'details_' . $lang; $type = 'type_' . $lang; $description = 'description_' . $lang; $title = 'title_' . $lang; $img_alt = 'img_alt_' . $lang; $question = 'question_' . $lang; $answer = 'answer_' . $lang; @endphp {{ __('Work Team') }} {{ __('Home') }} {{ __('Work Team') }} {{ __('Work Team') }} {{ app()->getLocale() == 'ar' ? 'مجلس إدارة' : 'Board of Directors' }} @php $teams = \App\Models\Empolyee::where(['is_active' => '1', 'type' => 'Board of Directors']) ->orderBy('id', 'asc') ->get(); @endphp @if ($teams && $teams->count() > 0) @foreach ($teams as $index => $employee) {{ $employee->$name }} {{ $employee->$type }} {{ $employee->$details }} @endforeach @endif {{ __('Work Team') }} {{ app()->getLocale() == 'ar' ? 'الإدارة التنفيذية' : 'Executive Management' }} @php $teams = \App\Models\Empolyee::where(['is_active' => '1', 'type' => 'Executive Management']) ->orderBy('id', 'asc') ->get(); @endphp @if ($teams && $teams->count() > 0) @foreach ($teams as $index => $employee) {{ $employee->$name }} {{ $employee->$type }} {{ $employee->$details }} @endforeach @endif @stop @section('scripts') @stop
{{ $employee->$type }}
{{ $employee->$details }}