@extends('layouts.admin.app')
@section('page-title')
{{ __('Brands Permission') }}
@endSection
@section('page-nav-title')
{{ __('Brands Permission') }}
{{ __('All Brands Permission') }}
@endsection
@section('content')
@include('includes.dialog')
{{ __('ID') }} |
{{ __('Name') }} |
{{ __('Phone Number') }} |
{{ __('Controls') }} |
@foreach ($users as $user)
{{ $user->id }} |
{{ $user->user_name }} |
{{ $user->phone_number }} |
|
@endforeach
@endsection
@section('scripts')
@endsection