@extends('layouts.default') @section('title', 'Vendors List') @section('header-links') @include('includes.headers.vendors') @endsection @section('new_button') addCreate vendor @endsection @section('content') @foreach($list as $li) @endforeach @if(count($list) == 0) @endif
Vendor Company Name Email Mobile Created By Created On Action
{{ $li->vendor_company?->name }} {{ $li->name }} {{ $li->email }} {{ $li->mobile }} {{ ucwords($li->creater?->name) }} {{ date(env('APP_DATE'), strtotime($li->created_at)) }} create
No data
@stop