@extends('layouts.app') @section('content')

{{translate('Seller Information')}}

@csrf
@php $info = \App\Seller::orderby('id', 'desc')->first(); if(!empty($info)) { $code = sprintf("%04d", $info->id); }else{ $code = sprintf("%04d", 1); } @endphp
@endsection @section('script') @endsection