@extends('Company.layout.master') @section('title',"Branch List") @section('page_name',"Branch List") @section('content')
@if(session('success')) @endif
Branch List
Add Branch
@foreach($data as $d) @if($d->id!=Auth::user()->id) @endif @endforeach
SL Branch Name Email Phone Created At Actions
{{$loop->iteration}} {{$d->u_name}} {{$d->u_email}} {{$d->u_phone}} {{$d->created_at}}
@endsection