@extends('adminlte::page')
@section('title', 'Sub Admin')
@section('content_header')
Sub Admin
@stop
@section('content')
| Full Name |
Email |
Phone |
Status |
Action |
@foreach ($store as $blg)
| {{$blg->name }} |
{{$blg->email }} |
{{$blg->phone }} |
{{($blg->is_active == 1)?'Active':'Deactive'}} |
Edit
Password
|
@endforeach
@section('js')
@stop
@stop