PK Default page
One Hat Cyber Team
  • Dir : ~/var/www/html/Modules/Customer/resources/views/
  • Edit File: customer_show.blade.php
    @if ($user->role == 'instructor') {{-- change Education and experience card area --}}
    {{ __('Experience and Education') }}
    {{ __('Experience') }}
    @forelse ($experiences as $experience) @empty @endforelse
    {{ __('No') }} {{ __('Company') }} {{ __('Position') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Action') }}

    {{ $loop->iteration }}

    {{ $experience->company }}

    {{ $experience->position }}

    {{ $experience->start_date }}

    {{ $experience->current ? 'Present' : $experience->end_date }}

    {{ __('No Data!') }}


    {{ __('Education') }}
    @forelse ($educations as $education) @empty @endforelse
    {{ __('No') }} {{ __('Organization') }} {{ __('Degree') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Action') }}

    {{ $loop->iteration }}

    {{ $education->organization }}

    {{ $education->degree }}

    {{ $education->start_date }}

    {{ $education->current == 1 || $education->end_date == null ? 'Present' : $experience->end_date }}

    {{ __('No Data!') }}
    @endif {{-- change biography card area --}}
    {{ __('Profile Location') }}
    @csrf @method('PUT')
    {{-- change socials card area --}}
    {{ __('Profile Socials') }}
    @csrf @method('PUT')
    {{-- change password card area --}}
    {{ __('Change Password') }}
    @csrf @method('PUT')
    {{-- banned history card area --}} @if ($banned_histories->count() > 0)
    {{ __('Banned History') }}
    @foreach ($banned_histories as $banned_history) @endforeach
    {{ __('Subject') }} {{ __('Description') }}
    {{ $banned_history->subject }} {!! clean(nl2br($banned_history->description)) !!}
    @endif @push('js') @endpush @endsection