@extends('admin.layout.app') @section('body')

{{ __('admin.scholarships_discounts') }}

@foreach($scholarships as $s) @endforeach
{{ __('admin.id') }} {{ __('admin.name') }} {{ __('admin.type_2') }} {{ __('admin.amount_2') }} {{ __('admin.status') }} {{ __('admin.actions') }}
{{ $s->id }} {{ $s->name }} {{ ucfirst($s->type) }} (@if($s->type == 'percentage') {{ $s->amount }}% @else {{ number_format($s->amount,2) }} AFN @endif) @if($s->type == 'percentage') {{ $s->amount }}% @else {{ number_format($s->amount,2) }} AFN @endif {{ $s->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
{{ $scholarships->links('pagination::bootstrap-4') }}
@endsection