@extends('admin.layout.master') @section('title') Our Team @endsection @section('content')
Our Team
@if($websitesetting->team==0) Inactive @else Active @endif
@forelse($teams as $t=>$team) {{-- update modal--}} @empty @endforelse
Id Image Name Designation Facebook Twitter Instagram Linkedin Created At Edit Delete
{{ $t+1 }} {{ $team->name }} {{ $team->designation }} {{ ($team->facebook) ? $team->facebook : '--' }} {{ ($team->twitter) ? $team->twitter : '--' }} {{ ($team->instagram) ? $team->instagram : '--' }} {{ ($team->linkedin) ? $team->linkedin : '--' }} {{ Carbon\Carbon::parse($team->created_at)->format('d-m-Y') }}
@endsection @section('script') @endsection