@extends('layouts.app')
@section('title', 'buyer | '.config('app.name'))
@section('style')
@endsection
@section('content')
| Id |
Name |
@if (Auth::user()->role_id === 1)
Registered By |
@endif
Actions |
@foreach($data as $company)
| {{$company->id}} |
{{$company->name}} |
@if (Auth::user()->role_id === 1)
{{$company->user->name}} |
@endif
{{-- --}}
|
@endforeach
@endsection
@section('script')
@endsection