@extends('admin.template.app')
@section('title', 'Mobile Operator List')
@section('content')
{{-- SUCCESS MESSAGE --}}
@if (session('success'))
{{ session('success') }}
@endif
{{-- ERROR MESSAGE --}}
@if (session('error'))
{{ session('error') }}
@endif
{{-- VALIDATION ERRORS --}}
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{--
App Configuration
--}}
Mobile Operator List
Add new config
| SN. |
Operator Name |
country code |
Status |
Action |
@foreach ($mobileOperators as $key => $mobileOperator)
| {{ $key + 1 }} |
{{ $mobileOperator->operator_name }} |
{{ $mobileOperator->country_code }} |
@if ($mobileOperator->is_active == 1)
Active
@else
Inactive
@endif
|
Update
|
@endforeach
@endsection