@extends("layouts.admin.app") @section("page-title") Dashboard @endSection @section("page-nav-title")

Dashboard

@endsection @section("content")

{{__("App Setting")}}

@if(!$AppSetting->isEmpty()) {{-- // $data is not empty--}} @else {{__('Create promo code')}} @endif
@foreach($AppSetting as $Setting) @endforeach
{{__("ID")}} {{__("Terms_And_Conditions")}} {{__("Promo code activation")}} {{__("offline")}} {{__("created_at")}} {{__("updated_at")}} {{__("Action")}}
{{$Setting->id}} {{$Setting->Terms_And_Conditions}} @if ($Setting->contest) {{__('is_active')}} @else {{__('Not_active')}} @endif @if ($Setting->offline) {{__('is_active')}} @else {{__('Not_active')}} @endif {{$Setting->created_at->diffForHumans()}} {{$Setting->updated_at->diffForHumans() }}
{{-- --}}
@endsection @section("scripts") @endsection