@extends('layouts/base_view')
@section('title')
{!! $variables['header_routes'] !!}
@endsection
@section('content')
| Placeholder |
Deskripsi |
Contoh |
@foreach($variables['placeholders'] as $placeholder => $description)
{{ $placeholder }} |
{{ $description }} |
@if($placeholder === '{YYYY}')
2024
@elseif($placeholder === '{YY}')
24
@elseif($placeholder === '{MM}')
12
@elseif($placeholder === '{DD}')
24
@elseif($placeholder === '{DOCTYPE}')
SPB
@elseif($placeholder === '{STORE}')
STR01
@elseif($placeholder === '{NUMBER}')
0001
@elseif($placeholder === '{PREFIX}')
REQ
@elseif($placeholder === '{SUFFIX}')
END
@elseif($placeholder === '{SEP}')
-
@endif
|
@endforeach
Contoh Pola:
@foreach($variables['pattern_examples'] as $pattern => $example)
-
{{ $pattern }} → {{ $example }}
@endforeach
@endsection