@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.representatives') }} @stop @section('content')
{{ __('home.add_new_representative') }}
@csrf
@foreach($reps as $rep) @endforeach
{{ __('home.rep_name') }} {{ __('home.phone') }} {{ __('home.area') }} {{ __('home.commission_rate') }} {{ __('home.status') }} {{ __('home.notes') }} {{ __('home.actions') }}
{{ $rep->name }} {{ $rep->phone }} {{ $rep->area }} {{ $rep->commission_rate }}% @if($rep->status == 'active') {{ __('home.active') }} @else {{ __('home.inactive') }} @endif {{ $rep->notes }}
@endsection @section('js') @endsection