@extends('admin.layouts.app')
@section('title')
@lang('SMS Default Template')
@endsection
@section('content')
| @lang('No.') |
@lang('Name') |
@lang('Status') |
@lang('Action') |
@foreach($smstemplate as $template)
| @lang($loop->iteration) |
{{ $template->name }} |
{{($template->sms_status == 1) ?trans('Active') : trans('Deactive')}}
|
|
@endforeach
@endsection
@push('style-lib')
@endpush
@push('js')
@endpush