@extends('layout.master') @push('plugin-styles') @endpush @section('title', __('dashboard.Invitation settings')) @section('content')
{{ __('dashboard.Invitation list') }}
@foreach ($InvitationSettings as $InvitationSetting) @endforeach
{{ __('dashboard.Invitation name') }} {{ __('dashboard.Invitation type') }} {{ __('dashboard.event') }} {{ __('dashboard.With a location') }} {{ __('dashboard.With barcode') }} {{ __('dashboard.Date') }}
{{ $InvitationSetting->invitation_name }} {{ __('dashboard.'.$InvitationSetting->invitation_type) }} {{ $InvitationSetting->event->name }} @if($InvitationSetting->location ) {{ __('dashboard.yes') }} @else {{ __('dashboard.no') }} @endif @if($InvitationSetting->with_barcode == 'on' ) {{ __('dashboard.yes') }} @else {{ __('dashboard.no') }} @endif {{ date('Y-m-d', strtotime($InvitationSetting->updated_at)) }}
@endsection @push('plugin-scripts') @endpush @push('custom-scripts') @endpush