/var/www/flurhymez/resources/views/admin/team
Edit: /var/www/flurhymez/resources/views/admin/team/listing.blade.php (11070B)
@extends('admin.layout.app')
@section('title', __('admin.team.page_title'))
@section('actions')
{{ __('admin.buttons.add_new') }}
@endsection
@section('js')
@endsection
@section('content')
| # |
{{ __('admin.team.team_name') }} |
{{ __('admin.team.team_position') }} |
{{ __('admin.team.team_social_media') }} |
{{ __('admin.general.actions') }} |
@forelse ($team as $key => $team)
| {{ $key + 1 }} |
{{ $team->name }} |
{{ $team->position }} |
@if ($team->social_media['facebook'] !== null)
-
@endif
@if ($team->social_media['youtube'] !== null)
-
@endif
@if ($team->social_media['soundcloud'] !== null)
-
@endif
@if ($team->social_media['twitter'] !== null)
-
@endif
@if ($team->social_media['instagram'] !== null)
-
@endif
@if ($team->social_media['spotify'] !== null)
-
@endif
@if ($team->social_media['anghami'] !== null)
-
@endif
@if ($team->social_media['itunes'] !== null)
-
@endif
|
|
@empty
| {{ __('admin.general.no_data') }} |
@endforelse
@endsection