@extends('layouts.app', ['title' => __('Add Code Of Conduct')]) @section('content') @include('users.partials.header', [ 'title' => __('Hello') . ' '. auth()->user()->name, 'description' => __('This is your profile page. You can see the progress you\'ve made with your work and manage your projects or assigned tasks'), 'class' => 'col-lg-7' ])

{{ __('List conducts') }}

@if (session('msg')) @endif
@foreach($conduct as $conducts) @endforeach
{{__('id number')}} {{__('time')}} {{__('Edit')}}
{{$conducts->id}} {{$conducts->updated_at}}
@include('layouts.footers.auth')
@endsection